diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 13:32:53 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 13:32:53 +0000 |
commit | 0f3575a3750f4fe9b9cc55a5bf3c2dbb210bc13b (patch) | |
tree | 39d19321e303b1e323fe58ec9945c1b9faf684f0 /tools/source/zcodec | |
parent | c206b4e50c998ebe75fb3be60958db2b49bdde58 (diff) |
INTEGRATION: CWS ooo20040704 (1.3.2); FILE MERGED
2004/07/20 06:15:11 svesik 1.3.2.3: RESYNC: (1.3-1.4); FILE MERGED
2004/06/30 12:43:54 waratah 1.3.2.2: #i30874# Add initial values to potentially unitialised values
2004/06/29 12:51:40 waratah 1.3.2.1: #i30874# Correct unitiliased warning
Diffstat (limited to 'tools/source/zcodec')
-rw-r--r-- | tools/source/zcodec/zcodec.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/source/zcodec/zcodec.cxx b/tools/source/zcodec/zcodec.cxx index 8ede955a4fef..e5afb63e3c31 100644 --- a/tools/source/zcodec/zcodec.cxx +++ b/tools/source/zcodec/zcodec.cxx @@ -2,9 +2,9 @@ * * $RCSfile: zcodec.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: kz $ $Date: 2004-06-28 16:08:13 $ + * last change: $Author: rt $ $Date: 2004-09-08 14:32:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -355,6 +355,7 @@ long ZCodec::ReadAsynchron( SvStream& rIStm, BYTE* pData, ULONG nSize ) if ( ( nMaxPos - nStreamPos ) < nInToRead ) { rIStm.SetError( ERRCODE_IO_PENDING ); + err= ! Z_STREAM_END; // TODO What is appropriate code for this? break; } |