VirtualBox

Ignore:
Timestamp:
Jul 23, 2013 12:27:35 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
87485
Message:

pr6022. OVA appliance don't fail when a certificate file exists. GZIP support has been implemented (first version).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/zip/zip.cpp

    r44528 r47340  
    575575{
    576576    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);
    578579
    579580    /*
     
    19271928RT_EXPORT_SYMBOL(RTZipBlockDecompress);
    19281929
     1930RTDECL(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
     1968RT_EXPORT_SYMBOL(RTZipGzipDecompressBuffer);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette