Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix flushing GZipOutputStream so all data is written to the underlying stream #225

Merged
merged 3 commits into from
Jun 15, 2019

Commits on Apr 16, 2018

  1. Fix flushing a GZipOutputStream

    When flushing a GZipOutputStream, ensure we deflate
    all data in the input buffer and write it to the
    underlying stream before we flush the underlying stream.
    adamreeve committed Apr 16, 2018
    Configuration menu
    Copy the full SHA
    a35ce40 View commit details
    Browse the repository at this point in the history
  2. Fix infinite loop when flushing DeflaterOutputStream with no compression

    DeflaterEngine.DeflateStored would always write more output even if
    there was no more input data to write, resulting in an infinite loop.
    adamreeve committed Apr 16, 2018
    Configuration menu
    Copy the full SHA
    f9ba6e9 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2019

  1. Configuration menu
    Copy the full SHA
    e05a781 View commit details
    Browse the repository at this point in the history