FpDebug, Linux: Fix leaked handle

This commit is contained in:
martin 2024-03-19 17:38:14 +01:00 committed by Martin
parent 2fb5d41799
commit 5c5e12448d

View File

@ -1189,6 +1189,11 @@ destructor TDbgLinuxProcess.Destroy;
begin
FProcProcess.Free;
FPostponedSignals.Free;
if FMasterPtyFd>-1 then
FpClose(FMasterPtyFd);
FMasterPtyFd:=-1;
inherited Destroy;
end;
@ -1201,6 +1206,9 @@ var
AnExecutabeFilename: string;
begin
Result := false;
if FMasterPtyFd>-1 then
FpClose(FMasterPtyFd);
FMasterPtyFd:=-1;
AnExecutabeFilename:=ExcludeTrailingPathDelimiter(Name);
if DirectoryExists(AnExecutabeFilename) then
@ -1267,6 +1275,7 @@ begin
FpClose(GSlavePTyFd);
if AMasterPtyFd>-1 then
FpClose(AMasterPtyFd);
FMasterPtyFd:=-1;
end;
end;
end;
@ -1518,7 +1527,6 @@ end;
function TDbgLinuxProcess.Detach(AProcess: TDbgProcess; AThread: TDbgThread): boolean;
begin
RemoveAllBreakPoints;
fpPTrace(PTRACE_DETACH, AThread.ID, nil, pointer(TDbgLinuxThread(AThread).FExceptionSignal));
Result := True;
end;