summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-07 12:11:10 +0000
committerAndras Timar <andras.timar@collabora.com>2015-03-20 12:12:59 +0100
commite17d65f429de959d6934eedb3e5842c5e59ab08a (patch)
treeba9edd7f52edb2c18cd3aee7da35436aaed3718f
parent2873eacf113cf3b3fa4d85c813d0315fd3b3994d (diff)
coverity#707890 Uninitialized scalar field
Change-Id: Ia28ff0bbe6fc6ac5a4a7c8b7189077707c6b964f (cherry picked from commit c31b821c9fb88bb602cbdbed11e1c402e781de03)
-rw-r--r--hwpfilter/source/hbox.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/hwpfilter/source/hbox.cxx b/hwpfilter/source/hbox.cxx
index 20edf6a0b49d..a672e0c6d25c 100644
--- a/hwpfilter/source/hbox.cxx
+++ b/hwpfilter/source/hbox.cxx
@@ -290,7 +290,11 @@ hchar_string DateCode::GetString()
// tab(9)
-Tab::Tab(void):HBox(CH_TAB)
+Tab::Tab()
+ : HBox(CH_TAB)
+ , width(0)
+ , leader(0)
+ , dummy(0)
{
}