diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 11:49:24 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 14:03:30 +0000 |
commit | 0660d241b7174101dbecda55cea265021d04a296 (patch) | |
tree | 65ed6e21ac0d2cf47d417c5044e8c75987643459 | |
parent | 00902f740e67f2fc21f307d40e6d2a2c5f11db72 (diff) |
coverity#707917 Uninitialized scalar field
Change-Id: Ida5f4a74a0ab808706b6e52862dab7272df5a27d
-rw-r--r-- | hwpfilter/source/hwpread.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hwpfilter/source/hwpread.cxx b/hwpfilter/source/hwpread.cxx index a4f159525e17..0422115de3cb 100644 --- a/hwpfilter/source/hwpread.cxx +++ b/hwpfilter/source/hwpread.cxx @@ -809,7 +809,9 @@ bool Outline::Read(HWPFile & hwpf) /* ĭ(30) */ -KeepSpace::KeepSpace():HBox(CH_KEEP_SPACE) +KeepSpace::KeepSpace() + : HBox(CH_KEEP_SPACE) + , dummy(0) { } |