Kaydet (Commit) 7e5f4575 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708553 Uninitialized scalar field

Change-Id: I73b6127a7e1791392218731a9b9af0795e69222a
üst 3f9d796c
......@@ -120,6 +120,13 @@ MultiSelection::MultiSelection( const MultiSelection& rOrig ) :
{
nCurSubSel = rOrig.nCurSubSel;
nCurIndex = rOrig.nCurIndex;
bInverseCur = rOrig.bInverseCur;
}
else
{
nCurSubSel = 0;
nCurIndex = 0;
bInverseCur = false;
}
// copy the sub selections
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment