summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/bitmapex.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2006-05-03 15:34:25 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2006-05-03 15:34:25 +0000
commit7df0fbc88753b8166914f43d97e4f58a135eb375 (patch)
treed1f4204a000e0a13a59295219c7883fdc29a823c /vcl/source/gdi/bitmapex.cxx
parent2b1fbfe66121ceb28f5c75ed4c3b3fcf115e7bd9 (diff)
INTEGRATION: CWS vcl58 (1.18.4); FILE MERGED
2006/04/28 08:13:32 hdu 1.18.4.1: #134316# make valgrind happy in operator>>
Diffstat (limited to 'vcl/source/gdi/bitmapex.cxx')
-rw-r--r--vcl/source/gdi/bitmapex.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/gdi/bitmapex.cxx b/vcl/source/gdi/bitmapex.cxx
index 4dc0ab42d3bf..34a382789aaa 100644
--- a/vcl/source/gdi/bitmapex.cxx
+++ b/vcl/source/gdi/bitmapex.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: bitmapex.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: hr $ $Date: 2006-04-19 13:54:39 $
+ * last change: $Author: rt $ $Date: 2006-05-03 16:34:25 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -760,8 +760,8 @@ SvStream& operator>>( SvStream& rIStm, BitmapEx& rBitmapEx )
if( !rIStm.GetError() )
{
const ULONG nStmPos = rIStm.Tell();
- UINT32 nMagic1;
- UINT32 nMagic2;
+ UINT32 nMagic1 = 0;
+ UINT32 nMagic2 = 0;
rIStm >> nMagic1 >> nMagic2;
@@ -773,7 +773,7 @@ SvStream& operator>>( SvStream& rIStm, BitmapEx& rBitmapEx )
}
else
{
- BYTE bTransparent;
+ BYTE bTransparent = false;
rIStm >> bTransparent;