Skip to content

Commit

Permalink
VideoMultiplexList: Fix Coverity ID 700899 Uninitialized scalar field
Browse files Browse the repository at this point in the history
In DTC::VideoMultiplexList::VideoMultiplexList(): Several scalar fields are
not initialized by the constructor.
  • Loading branch information
Paul Harrison committed Jun 15, 2013
1 parent bd4c712 commit d7e36a9
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ class SERVICE_PUBLIC VideoMultiplexList : public QObject
public:

VideoMultiplexList(QObject *parent = 0)
: QObject( parent )
: QObject( parent ),
m_StartIndex ( 0 ),
m_Count ( 0 ),
m_CurrentPage ( 0 ),
m_TotalPages ( 0 ),
m_TotalAvailable ( 0 )
{
}

Expand Down

0 comments on commit d7e36a9

Please sign in to comment.