Skip to content

Commit

Permalink
VideoSource: Fix Coverity 700900 Uninitialized scalar field
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Harrison committed Jul 13, 2013
1 parent cd314dc commit 6fbc2f4
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -46,7 +46,9 @@ class SERVICE_PUBLIC VideoSource : public QObject

VideoSource(QObject *parent = 0)
: QObject ( parent ),
m_Id ( 0 )
m_Id ( 0 ),
m_UseEIT ( false ),
m_NITId ( 0 )
{
}

Expand Down

0 comments on commit 6fbc2f4

Please sign in to comment.