Skip to content

Commit

Permalink
DecoderIOFactoryShoutCast: fix Coverity ID 1026180 Uninitialized scal…
Browse files Browse the repository at this point in the history
…ar field
  • Loading branch information
Paul Harrison committed May 30, 2013
1 parent ebb54f2 commit e437e9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythplugins/mythmusic/mythmusic/shoutcast.cpp
Expand Up @@ -755,7 +755,7 @@ bool ShoutCastIODevice::parseMeta(void)
/****************************************************************************/

DecoderIOFactoryShoutCast::DecoderIOFactoryShoutCast(DecoderHandler *parent)
: DecoderIOFactory(parent), m_timer(NULL), m_input(NULL)
: DecoderIOFactory(parent), m_timer(NULL), m_input(NULL), m_prebuffer(160000)
{
m_timer = new QTimer(this);
}
Expand Down

0 comments on commit e437e9a

Please sign in to comment.