summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2001-08-02 12:01:04 +0000
committerMartin Gallwey <mtg@openoffice.org>2001-08-02 12:01:04 +0000
commit4d650ad817df05d3fcdc4431accd4c6a37ff2aaf (patch)
tree3d3a9b09f508ceb25ce6cf0b8257e63b28f4ab2e /package
parentab09be0774b6e2f36b481c0b9510aadc28bb094d (diff)
#87722# correctly handle raw streams
Diffstat (limited to 'package')
-rw-r--r--package/source/zipapi/ZipFile.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/source/zipapi/ZipFile.cxx b/package/source/zipapi/ZipFile.cxx
index 471da9fd1038..b0b63d7ca936 100644
--- a/package/source/zipapi/ZipFile.cxx
+++ b/package/source/zipapi/ZipFile.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ZipFile.cxx,v $
*
- * $Revision: 1.27 $
+ * $Revision: 1.28 $
*
- * last change: $Author: jp $ $Date: 2001-07-30 09:48:59 $
+ * last change: $Author: mtg $ $Date: 2001-08-02 13:01:04 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -529,7 +529,7 @@ Reference< XInputStream > SAL_CALL ZipFile::getRawStream( ZipEntry& rEntry,
createFileStream(rEntry, rData, sal_False, nUncompressedSize, nEnd) :
createMemoryStream(rEntry, rData, sal_False, nUncompressedSize, nEnd);
*/
- return createMemoryStream(rEntry, rData, sal_False, nUncompressedSize, nEnd);
+ return createMemoryStream(rEntry, rData, sal_True, nUncompressedSize, nEnd);
}
sal_Bool ZipFile::readLOC( ZipEntry &rEntry )