Kaydet (Commit) 587668b7 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708049 Uninitialized scalar field

Change-Id: Ie5260dd4800a7c5d9185ce603c6e9deb658224a3
üst 54df60d8
...@@ -407,7 +407,11 @@ struct Sc10ColAttr ...@@ -407,7 +407,11 @@ struct Sc10ColAttr
sal_uInt16 Count; sal_uInt16 Count;
Sc10ColData* pData; Sc10ColData* pData;
Sc10ColAttr() : pData(NULL) {} Sc10ColAttr()
: Count(0)
, pData(NULL)
{
}
~Sc10ColAttr() { delete [] pData; } ~Sc10ColAttr() { delete [] pData; }
}; };
......
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