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

coverity#707910 Uninitialized scalar field

Change-Id: I991261053026d931bccb3a1429ccfcac136cfd94
üst a6c7a43e
......@@ -616,7 +616,11 @@ bool AutoNum::Read(HWPFile & hwpf)
// new number(19)
NewNum::NewNum():HBox(CH_NEW_NUM)
NewNum::NewNum()
: HBox(CH_NEW_NUM)
, type(0)
, number(0)
, dummy(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