Skip to content

Commit

Permalink
AudioOutput: Fix coverity ID 700791 Uninitialized scalar field
Browse files Browse the repository at this point in the history
In AudioOutput::AudioOutput(): pulsewassuspended was not initialized by the
constructor.
  • Loading branch information
Paul Harrison committed Jun 8, 2013
1 parent 8840ce2 commit e74a61b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmyth/audio/audiooutput.h
Expand Up @@ -51,7 +51,7 @@ class MPUBLIC AudioOutput : public VolumeBase, public OutputListeners

AudioOutput() :
VolumeBase(), OutputListeners(),
lastError(QString::null), lastWarn(QString::null) {}
lastError(QString::null), lastWarn(QString::null), pulsewassuspended(false) {}

virtual ~AudioOutput();

Expand Down

0 comments on commit e74a61b

Please sign in to comment.