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

coverity#707915 Uninitialized scalar field

Change-Id: I9617b67f9a3af7fff43ae1ff5b98c1066c53059b
üst 15db9203
...@@ -582,11 +582,15 @@ bool HeaderFooter::Read(HWPFile & hwpf) ...@@ -582,11 +582,15 @@ bool HeaderFooter::Read(HWPFile & hwpf)
// footnote(17) // footnote(17)
Footnote::Footnote():HBox(CH_FOOTNOTE) Footnote::Footnote()
: HBox(CH_FOOTNOTE)
, dummy(0)
, number(0)
, type(0)
, width(0)
{ {
} }
bool Footnote::Read(HWPFile & hwpf) bool Footnote::Read(HWPFile & hwpf)
{ {
hwpf.Read2b(reserved, 2); hwpf.Read2b(reserved, 2);
......
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