diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-07 12:11:10 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-07 12:19:28 +0000 |
commit | c31b821c9fb88bb602cbdbed11e1c402e781de03 (patch) | |
tree | 84706749235fe749fb157f913fde165d242b4e3b | |
parent | 291a95eaca8a3576c535fa20262154100d40fe96 (diff) |
coverity#707890 Uninitialized scalar field
Change-Id: Ia28ff0bbe6fc6ac5a4a7c8b7189077707c6b964f
-rw-r--r-- | hwpfilter/source/hbox.cxx | 6 |
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) { } |