diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-10-21 10:50:36 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-10-21 10:50:36 +0000 |
commit | 1d1b5ff4597a41d459e747be1de45e79b010a7a2 (patch) | |
tree | d6d33e30863ec68c6f49876aa260cb08004bc3a6 /tools/source/zcodec | |
parent | 0c6788dc27fb66341141433da6e16c7afeb0ac0d (diff) |
INTEGRATION: CWS valgrind57 (1.5.24); FILE MERGED
2004/10/18 13:47:47 dbo 1.5.24.1: #i35713# uninit member
Diffstat (limited to 'tools/source/zcodec')
-rw-r--r-- | tools/source/zcodec/zcodec.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/source/zcodec/zcodec.cxx b/tools/source/zcodec/zcodec.cxx index e5afb63e3c31..fcada1af1150 100644 --- a/tools/source/zcodec/zcodec.cxx +++ b/tools/source/zcodec/zcodec.cxx @@ -2,9 +2,9 @@ * * $RCSfile: zcodec.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2004-09-08 14:32:53 $ + * last change: $Author: obo $ $Date: 2004-10-21 11:50:36 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -101,6 +101,7 @@ static int gz_magic[2] = { 0x1f, 0x8b }; /* gzip magic header */ // ---------- ZCodec::ZCodec( ULONG nInBufSize, ULONG nOutBufSize, ULONG nMemUsage ) + : mnCRC(0) { mnMemUsage = nMemUsage; mnInBufSize = nInBufSize; @@ -109,6 +110,7 @@ ZCodec::ZCodec( ULONG nInBufSize, ULONG nOutBufSize, ULONG nMemUsage ) } ZCodec::ZCodec( void ) + : mnCRC(0) { mnMemUsage = MAX_MEM_USAGE; mnInBufSize = DEFAULT_IN_BUFSIZE; |