Changeset 47340 in vbox for trunk/src/VBox/Runtime/common/zip
- Timestamp:
- Jul 23, 2013 12:27:35 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87485
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/zip.cpp
r44528 r47340 575 575 { 576 576 pZip->u.Zlib.next_out = (Bytef *)pvBuf; 577 pZip->u.Zlib.avail_out = (uInt)cbBuf; Assert(pZip->u.Zlib.avail_out == cbBuf); 577 pZip->u.Zlib.avail_out = (uInt)cbBuf; 578 Assert(pZip->u.Zlib.avail_out == cbBuf); 578 579 579 580 /* … … 1927 1928 RT_EXPORT_SYMBOL(RTZipBlockDecompress); 1928 1929 1930 RTDECL(int) RTZipGzipDecompressBuffer(z_stream streamIn, 1931 uint32_t *cbDecompressed, 1932 bool *finished) 1933 { 1934 int rc; 1935 int sh = streamIn.avail_out; 1936 1937 *cbDecompressed = 0; 1938 1939 do 1940 { 1941 rc = inflate(&streamIn, Z_NO_FLUSH); 1942 1943 if (rc < 0) 1944 { 1945 rc = zipErrConvertFromZlib(rc, false /*decompress*/); 1946 break; 1947 } 1948 1949 *cbDecompressed += (sh - streamIn.avail_out); 1950 sh = streamIn.avail_out; 1951 } 1952 while (streamIn.avail_out > 0 && streamIn.avail_in > 0 ); 1953 1954 if (RT_SUCCESS(rc)) 1955 { 1956 if (streamIn.avail_in == 0) 1957 *finished = true; 1958 else 1959 { 1960 if (streamIn.avail_out == 0) 1961 *finished = false; 1962 } 1963 } 1964 1965 return rc; 1966 } 1967 1968 RT_EXPORT_SYMBOL(RTZipGzipDecompressBuffer);
Note:
See TracChangeset
for help on using the changeset viewer.