summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-10 20:49:06 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-10 21:13:03 +0100
commit3c29c3bd70b01a894e67b1910976e0e5cc3f24cd (patch)
tree4f3f4422c0e12347915a0d5f4c12de2e1d85932d /hwpfilter
parent50104ef4ab7102d03a2f4a30f8c7267cb668d7b5 (diff)
coverity#984094 Uninitialized scalar field
Change-Id: Ied78aaa315da9bbcbd5b26a223f41da4526e2384
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/hbox.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/hwpfilter/source/hbox.cxx b/hwpfilter/source/hbox.cxx
index c3c7eca4f881..006dc4c7aa0e 100644
--- a/hwpfilter/source/hbox.cxx
+++ b/hwpfilter/source/hbox.cxx
@@ -76,16 +76,15 @@ hunit HBox::Height(CharShape *csty)
return( csty->size );
}
-
// skip block
SkipData::SkipData(hchar hch)
: HBox(hch)
, data_block_len(0)
+ , dummy(0)
, data_block(0)
{
}
-
SkipData::~SkipData(void)
{
delete[]data_block;