summaryrefslogtreecommitdiff
path: root/contrib/delphi
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:23:45 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:23:45 -0700
commit7a6955760ba950eb82f57929f8f6c9847c65f0af (patch)
treee2cd657aca6d606e0b28bf57fe45e914717a334c /contrib/delphi
parentf0e76a6634eb26e3ddc6dfc6f2489553eff8c8f4 (diff)
downloadzlib-1.2.1.2.tar.gz
zlib-1.2.1.2.tar.bz2
zlib-1.2.1.2.zip
zlib 1.2.1.2v1.2.1.2
Diffstat (limited to 'contrib/delphi')
-rw-r--r--contrib/delphi/ZLib.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/delphi/ZLib.pas b/contrib/delphi/ZLib.pas
index 61ffd08..8853866 100644
--- a/contrib/delphi/ZLib.pas
+++ b/contrib/delphi/ZLib.pas
@@ -152,7 +152,7 @@ procedure DecompressToUserBuf(const InBuf: Pointer; InBytes: Integer;
152 const OutBuf: Pointer; BufSize: Integer); 152 const OutBuf: Pointer; BufSize: Integer);
153 153
154const 154const
155 zlib_version = '1.2.1'; 155 zlib_version = '1.2.2';
156 156
157type 157type
158 EZlibError = class(Exception); 158 EZlibError = class(Exception);
@@ -510,7 +510,7 @@ begin
510 Result := Count - FZRec.avail_out; 510 Result := Count - FZRec.avail_out;
511 Exit; 511 Exit;
512 end; 512 end;
513 FZRec.next_in := FBuffer; 513 FZRec.next_in := FBuffer;
514 FStrmPos := FStrm.Position; 514 FStrmPos := FStrm.Position;
515 Progress(Self); 515 Progress(Self);
516 end; 516 end;