* in decompress stream use eDEcompresserror, patch by Marcin mantis #36757

git-svn-id: trunk@44276 -
This commit is contained in:
marco 2020-03-06 22:02:23 +00:00
parent 45d31dec21
commit bead4185cd

View File

@ -271,7 +271,7 @@ begin
else
err:=inflateInit(Fstream);
if err<>Z_OK then
raise Ecompressionerror.create(zerror(err));
raise Edecompressionerror.create(zerror(err));
end;
function Tdecompressionstream.read(var buffer;count:longint):longint;