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

coverity#707651 Uninitialized scalar field

Change-Id: I6e497d60e72efd1df6c271ce6bf8d5e46ba09ea7
üst 81926e66
......@@ -126,7 +126,13 @@ IMPL_LINK_INLINE_END( SbiInputDialog, Cancel, Window *, pWindow )
SbiStream::SbiStream()
: pStrm( 0 )
: pStrm(0)
, nExpandOnWriteTo(0)
, nLine(0)
, nLen(0)
, nMode(0)
, nChan(0)
, nError(0)
{
}
......
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