mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-30 19:40:21 +02:00
* dispose of PBufStream before Fail in TResourceFile.LoadFile and CreateFile
This commit is contained in:
parent
50b517f4a9
commit
87bb649df1
@ -772,7 +772,10 @@ begin
|
||||
begin Dispose(B, Done); B:=nil; end;
|
||||
if B=nil then Fail;
|
||||
if Create(B^)=false then
|
||||
Fail;
|
||||
Begin
|
||||
Dispose(B,Done);
|
||||
Fail;
|
||||
End;
|
||||
MyStream:=true;
|
||||
end;
|
||||
|
||||
@ -784,14 +787,20 @@ begin
|
||||
begin Dispose(B, Done); B:=nil; end;
|
||||
if B=nil then Fail;
|
||||
if Load(B^)=false then
|
||||
Fail;
|
||||
Begin
|
||||
Dispose(B,Done);
|
||||
Fail;
|
||||
End;
|
||||
MyStream:=true;
|
||||
end;
|
||||
|
||||
END.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.9 2000-04-18 11:42:39 pierre
|
||||
Revision 1.10 2000-05-16 21:48:13 pierre
|
||||
* dispose of PBufStream before Fail in TResourceFile.LoadFile and CreateFile
|
||||
|
||||
Revision 1.9 2000/04/18 11:42:39 pierre
|
||||
lot of Gabor changes : see fixes.txt
|
||||
|
||||
Revision 1.8 2000/02/07 08:29:14 michael
|
||||
@ -858,4 +867,4 @@ END.
|
||||
+ tph writer
|
||||
+ first things for resource files
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user