mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-19 01:09:13 +02:00
* Fix memleak
This commit is contained in:
parent
04e715445f
commit
dcadafa1b8
@ -64,6 +64,7 @@ Var
|
|||||||
Obj : TJSONObject absolute D;
|
Obj : TJSONObject absolute D;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
D:=Nil;
|
||||||
F:=TFileStream.Create(aFileName,fmOpenRead or fmShareDenyWrite);
|
F:=TFileStream.Create(aFileName,fmOpenRead or fmShareDenyWrite);
|
||||||
try
|
try
|
||||||
D:=GetJSON(F);
|
D:=GetJSON(F);
|
||||||
@ -73,6 +74,7 @@ begin
|
|||||||
Msg.Body:=Obj.Get('body',Msg.Body);
|
Msg.Body:=Obj.Get('body',Msg.Body);
|
||||||
Msg.Image:=Obj.Get('image',Msg.Image);
|
Msg.Image:=Obj.Get('image',Msg.Image);
|
||||||
finally
|
finally
|
||||||
|
D.Free;
|
||||||
F.Free;
|
F.Free;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
@ -80,7 +82,6 @@ end;
|
|||||||
|
|
||||||
procedure TFCMApplication.ConfigureMessage(Msg : TNotificationMessage);
|
procedure TFCMApplication.ConfigureMessage(Msg : TNotificationMessage);
|
||||||
|
|
||||||
|
|
||||||
begin
|
begin
|
||||||
if HasOption('m','message') then
|
if HasOption('m','message') then
|
||||||
LoadMessageFromFile(Msg,GetOptionValue('m','message'));
|
LoadMessageFromFile(Msg,GetOptionValue('m','message'));
|
||||||
@ -90,7 +91,6 @@ begin
|
|||||||
Msg.Body:=GetoptionValue('b','body');
|
Msg.Body:=GetoptionValue('b','body');
|
||||||
if HasOption('i','image') then
|
if HasOption('i','image') then
|
||||||
Msg.Body:=GetoptionValue('i','image');
|
Msg.Body:=GetoptionValue('i','image');
|
||||||
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TFCMApplication.DoHandleNewToken(Sender: TObject; const aToken: TBearerToken);
|
procedure TFCMApplication.DoHandleNewToken(Sender: TObject; const aToken: TBearerToken);
|
||||||
|
Loading…
Reference in New Issue
Block a user