Skip to content

Commit

Permalink
VideoMultiplex: Fix Coverity ID 700898 Uninitialized scalar field
Browse files Browse the repository at this point in the history
In DTC::VideoMultiplex::VideoMultiplex(): Several scalar fields are not
initialized by the constructor.
  • Loading branch information
Paul Harrison committed Jun 15, 2013
1 parent f43a9d7 commit bd4c712
Showing 1 changed file with 8 additions and 1 deletion.
Expand Up @@ -75,7 +75,14 @@ class SERVICE_PUBLIC VideoMultiplex : public QObject

VideoMultiplex(QObject *parent = 0)
: QObject ( parent ),
m_MplexId ( 0 )
m_MplexId ( 0 ),
m_SourceId ( 0 ),
m_TransportId ( 0 ),
m_NetworkId ( 0 ),
m_Frequency ( 0 ),
m_SymbolRate ( 0 ),
m_Visible ( false ),
m_ServiceVersion( 0 )
{
}

Expand Down

0 comments on commit bd4c712

Please sign in to comment.