Skip to content

Commit

Permalink
NuppelDecoder: Fix Coverity ID 700917 Uninitialized pointer field
Browse files Browse the repository at this point in the history
strm_buf was left uninitialized by the constructor.
  • Loading branch information
Paul Harrison committed Jun 24, 2013
1 parent eaea397 commit f8e3b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/nuppeldecoder.cpp
Expand Up @@ -48,7 +48,7 @@ NuppelDecoder::NuppelDecoder(MythPlayer *parent,
directframe(NULL), decoded_video_frame(NULL),
mpa_vidcodec(0), mpa_vidctx(0), mpa_audcodec(0), mpa_audctx(0),
directrendering(false),
lastct('1'), strm(0), buf(0), buf2(0),
lastct('1'), strm_buf(0), strm(0), buf(0), buf2(0),
videosizetotal(0), videoframesread(0), setreadahead(false)
{
// initialize structures
Expand Down

0 comments on commit f8e3b08

Please sign in to comment.