diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:33 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:33 -0700 |
commit | 0484693e1723bbab791c56f95597bd7dbe867d03 (patch) | |
tree | 8f31dbed98b4390da74a90b484f2accf8f8a3a8e /contrib/delphi | |
parent | 9811b53dd9e8f67015c7199fff12b5bfc6965330 (diff) | |
download | zlib-1.2.2.2.tar.gz zlib-1.2.2.2.tar.bz2 zlib-1.2.2.2.zip |
zlib 1.2.2.2v1.2.2.2
Diffstat (limited to 'contrib/delphi')
-rw-r--r-- | contrib/delphi/ZLib.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/delphi/ZLib.pas b/contrib/delphi/ZLib.pas index 8853866..b9d33e2 100644 --- a/contrib/delphi/ZLib.pas +++ b/contrib/delphi/ZLib.pas | |||
@@ -344,7 +344,7 @@ begin | |||
344 | strm.avail_out := OutBytes; | 344 | strm.avail_out := OutBytes; |
345 | DCheck(inflateInit_(strm, zlib_version, sizeof(strm))); | 345 | DCheck(inflateInit_(strm, zlib_version, sizeof(strm))); |
346 | try | 346 | try |
347 | while DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END do | 347 | while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do |
348 | begin | 348 | begin |
349 | P := OutBuf; | 349 | P := OutBuf; |
350 | Inc(OutBytes, BufInc); | 350 | Inc(OutBytes, BufInc); |