summaryrefslogtreecommitdiff
path: root/contrib/delphi
diff options
context:
space:
mode:
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;