Kaydet (Commit) 2b3470a2 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707893 Uninitialized scalar field

Change-Id: Ib3dfe4dae625816ee070b0aa5e08fc92e6454131
üst 409727fa
...@@ -354,13 +354,21 @@ hunit TxtBox::Height(CharShape * csty) ...@@ -354,13 +354,21 @@ hunit TxtBox::Height(CharShape * csty)
// picture(11) // picture(11)
Picture::Picture(void):FBox(CH_PICTURE) Picture::Picture()
: FBox(CH_PICTURE)
, dummy(0)
, follow_block_size(0)
, dummy1(0)
, dummy2(0)
, reserved1(0)
, cap_pos(0)
, num(0)
, pictype(0)
, follow(0)
, ishyper(false)
{ {
follow = 0;
ishyper = false;
} }
Picture::~Picture(void) Picture::~Picture(void)
{ {
delete[]follow; delete[]follow;
......
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