Kaydet (Commit) 5b73a66c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1323760 Uninitialized scalar field

Change-Id: I933b208283629e7940f3d5928bae9f94a485f54c
üst e19d966b
......@@ -41,7 +41,12 @@ public:
typedef BitmapChecksum ChecksumType;
SalBitmap() : mbChecksumValid(false) {}
SalBitmap()
: mnChecksum(0)
, mbChecksumValid(false)
{
}
virtual ~SalBitmap();
virtual bool Create( const Size& rSize,
......
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