summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-13 11:49:24 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-13 14:03:30 +0000
commit0660d241b7174101dbecda55cea265021d04a296 (patch)
tree65ed6e21ac0d2cf47d417c5044e8c75987643459 /hwpfilter
parent00902f740e67f2fc21f307d40e6d2a2c5f11db72 (diff)
coverity#707917 Uninitialized scalar field
Change-Id: Ida5f4a74a0ab808706b6e52862dab7272df5a27d
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/hwpread.cxx4
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)
{
}