diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-26 10:21:18 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-26 10:21:18 +0000 |
commit | 51dc2be2be080a80299676de8c87da92bbf9bf80 (patch) | |
tree | bf84f21eddaee9b0dc0b2b338ed592de0263d011 /package | |
parent | 1d4f7c1a9517b3b3f5e3ff300ed29be0e852c131 (diff) |
#92924#: exception specifications
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zippackage/ZipPackage.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/source/zippackage/ZipPackage.cxx b/package/source/zippackage/ZipPackage.cxx index db7878f88216..c923e52fdc27 100644 --- a/package/source/zippackage/ZipPackage.cxx +++ b/package/source/zippackage/ZipPackage.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ZipPackage.cxx,v $ * - * $Revision: 1.67 $ + * $Revision: 1.68 $ * - * last change: $Author: mtg $ $Date: 2001-10-22 13:34:46 $ + * last change: $Author: hr $ $Date: 2001-10-26 11:21:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -740,7 +740,8 @@ void ZipPackage::writeTempFile() rtl_random_addBytes ( aRandomPool, &aTime, 8 ); // call saveContents (it will recursively save sub-directories - pRootFolder->saveContents( OUString(), aManList, aZipOut, aEncryptionKey, aRandomPool ); + OUString aEmptyString; + pRootFolder->saveContents( aEmptyString, aManList, aZipOut, aEncryptionKey, aRandomPool ); // Clean up random pool memory rtl_random_destroyPool ( aRandomPool ); |