diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-09-21 13:09:29 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-09-21 15:37:17 +0100 |
commit | 9b0198b2442bc749491d0f1e5e2c811346e5d568 (patch) | |
tree | 6af3f097947c8d5a4ebf5fd5599d1fe1fcc9e96c /package/source/manifest | |
parent | b3603e0e0e5dbfbeaa2426c499e8f64be2d15765 (diff) |
package: convert internal ZIP handling data-types to 64bit
Prepare for a ZIP64 implementation.
Audit all "Size" property fetches through Anys.
Audit all uses of nSize, nCompressedSize, nOffset through the code.
Add FIXME64: comments to all points requiring future work.
Diffstat (limited to 'package/source/manifest')
-rw-r--r-- | package/source/manifest/ManifestImport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/source/manifest/ManifestImport.cxx b/package/source/manifest/ManifestImport.cxx index 7e68f6cc4a9e..10270683cf59 100644 --- a/package/source/manifest/ManifestImport.cxx +++ b/package/source/manifest/ManifestImport.cxx @@ -133,7 +133,7 @@ void ManifestImport::doFileEntry(StringHashMap &rConvertedAttribs) OUString sSize = rConvertedAttribs[sSizeAttribute]; if ( sSize.getLength() ) { - sal_Int32 nSize = sSize.toInt32(); + sal_Int64 nSize = sSize.toInt64(); aSequence[PKG_MNFST_UCOMPSIZE].Name = sSizeProperty; aSequence[PKG_MNFST_UCOMPSIZE].Value <<= nSize; } |