diff options
author | Kurt Zenker <kz@openoffice.org> | 2011-01-06 14:58:44 +0100 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2011-01-06 14:58:44 +0100 |
commit | 2aa1dc9a47787f2e499a22c901a52939e77a27bc (patch) | |
tree | 43fa2e9d54a8e929164daf3a48680738956124e7 | |
parent | 03cfe2c9032b9236d283735f95c58ba917e2786f (diff) | |
parent | 2c230853f4941b87edc438a6ac0021d1f16730b0 (diff) |
CWS-TOOLING: integrate CWS impress208ooo/OOO330_m20ooo/OOO330_m19
-rw-r--r-- | package/source/zipapi/ZipFile.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/package/source/zipapi/ZipFile.cxx b/package/source/zipapi/ZipFile.cxx index ce4378609..3f98eded0 100644 --- a/package/source/zipapi/ZipFile.cxx +++ b/package/source/zipapi/ZipFile.cxx @@ -836,13 +836,18 @@ sal_Int32 ZipFile::recover() aGrabber.seek( 0 ); - for( sal_Int32 nGenPos = 0; aGrabber.readBytes( aBuffer, 32000 ) && aBuffer.getLength() > 30; ) + const sal_Int32 nToRead = 32000; + for( sal_Int32 nGenPos = 0; aGrabber.readBytes( aBuffer, nToRead ) && aBuffer.getLength() > 16; ) { const sal_Int8 *pBuffer = aBuffer.getConstArray(); sal_Int32 nBufSize = aBuffer.getLength(); sal_Int32 nPos = 0; - while( nPos < nBufSize - 16 ) + // the buffer should contain at least one header, + // or if it is end of the file, at least the postheader with sizes and hash + while( nPos < nBufSize - 30 + || ( aBuffer.getLength() < nToRead && nPos < nBufSize - 16 ) ) + { if ( nPos < nBufSize - 30 && pBuffer[nPos] == 'P' && pBuffer[nPos+1] == 'K' && pBuffer[nPos+2] == 3 && pBuffer[nPos+3] == 4 ) { |