From 1d1b5ff4597a41d459e747be1de45e79b010a7a2 Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Thu, 21 Oct 2004 10:50:36 +0000 Subject: INTEGRATION: CWS valgrind57 (1.5.24); FILE MERGED 2004/10/18 13:47:47 dbo 1.5.24.1: #i35713# uninit member --- tools/source/zcodec/zcodec.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tools/source/zcodec') 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; -- cgit