diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-07-14 11:03:55 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-07-14 11:03:55 +0000 |
commit | 4afe95fee0fb3f20eac9eb914d16bc987b1eefcf (patch) | |
tree | b32e078b9035d8c933835f626e789bb282ead827 /vcl/source/gdi/bitmap2.cxx | |
parent | 8db254a95f17b842d49d0b9f9b20d2cb531f91f4 (diff) |
INTEGRATION: CWS vgvalgrind (1.6.294); FILE MERGED
2005/05/20 12:03:33 vg 1.6.294.1: #122920# initialize variables before use
Diffstat (limited to 'vcl/source/gdi/bitmap2.cxx')
-rw-r--r-- | vcl/source/gdi/bitmap2.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/gdi/bitmap2.cxx b/vcl/source/gdi/bitmap2.cxx index 252fc356be99..dbf2112c9640 100644 --- a/vcl/source/gdi/bitmap2.cxx +++ b/vcl/source/gdi/bitmap2.cxx @@ -2,9 +2,9 @@ * * $RCSfile: bitmap2.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: kz $ $Date: 2005-07-14 11:35:38 $ + * last change: $Author: kz $ $Date: 2005-07-14 12:03:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -294,7 +294,7 @@ BOOL Bitmap::ImplReadDIB( SvStream& rIStm, Bitmap& rBmp, ULONG nOffset ) BOOL Bitmap::ImplReadDIBFileHeader( SvStream& rIStm, ULONG& rOffset ) { UINT32 nTmp32; - UINT16 nTmp16; + UINT16 nTmp16 = 0; BOOL bRet = FALSE; rIStm >> nTmp16; |