diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-11-13 21:21:34 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-13 21:21:34 +0000 |
commit | 88fde3ce509caed402348297a0b6828d5233d408 (patch) | |
tree | c53fa4f08c80256c7b601fc6059ea534aea99a11 | |
parent | ac01b341ed983d22be5d29b5561e0b448693d931 (diff) |
coverity#1251604 Uninitialized scalar field
Change-Id: I34ed719ecc81db924b9ec1ca8f22ffa81246a723
-rw-r--r-- | vcl/opengl/salbmp.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/opengl/salbmp.cxx b/vcl/opengl/salbmp.cxx index 0858c153b982..d7e38b052b59 100644 --- a/vcl/opengl/salbmp.cxx +++ b/vcl/opengl/salbmp.cxx @@ -299,7 +299,8 @@ private: public: ImplPixelFormat1( const BitmapPalette& rPalette ) - : mrPalette( rPalette ) + : mrPalette(rPalette) + , mnX(0) { } virtual void StartLine( sal_uInt8* pLine ) SAL_OVERRIDE |