Kaydet (Commit) b8d8bb8e authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#984094 Uninitialized scalar field

Change-Id: I114abdb07760e128e40a6e4a82d276584aabed97
üst 313ea4b2
......@@ -78,9 +78,11 @@ hunit HBox::Height(CharShape *csty)
// skip block
SkipData::SkipData(hchar hch):HBox(hch)
SkipData::SkipData(hchar hch)
: HBox(hch)
, data_block_len(0)
, data_block(0)
{
data_block = 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment