summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-13 11:55:39 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-13 14:03:31 +0000
commit47c1dbb955c0904f2eb99ae921323ee5711fabcd (patch)
treebd0e2d00579f62751f89fc67b524b71a395057ec /hwpfilter
parent18fa6e2081a5071ece0e5ddb8a95bd5ab73b1873 (diff)
coverity#707912 Uninitialized scalar field
Change-Id: If8d95327cfde32d146d8313fbd8f78d4c4f7ca88
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/hwpread.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/hwpfilter/source/hwpread.cxx b/hwpfilter/source/hwpread.cxx
index ae528fab2b47..2a35a3af3331 100644
--- a/hwpfilter/source/hwpread.cxx
+++ b/hwpfilter/source/hwpread.cxx
@@ -714,13 +714,13 @@ bool MailMerge::Read(HWPFile & hwpf)
return !hwpf.State();
}
-
// char compositon(23)
-Compose::Compose():HBox(CH_COMPOSE)
+Compose::Compose()
+ : HBox(CH_COMPOSE)
+ , dummy(0)
{
}
-
bool Compose::Read(HWPFile & hwpf)
{
hwpf.Read2b(compose, 3);