LazDebuggerFp: fixed crash in callstack / dangling pointer

This commit is contained in:
Martin 2022-06-23 17:22:23 +02:00
parent b95d4d491a
commit dd89fc14e1
2 changed files with 19 additions and 9 deletions

View File

@ -836,15 +836,14 @@ begin
FCallstackEntry.RemoveFreeNotification(@DoCallstackEntryFreed_DecRef);
if FCallstackEntry.Validity = ddsRequested then begin
if FDbgCallStack = nil then
if not FValid then
FCallstackEntry.Validity := ddsInvalid
else begin
c := FDbgCallStack.SrcClassName;
c := FSrcClassName;
if c <> '' then
c := c + '.';
FCallstackEntry.Init(FDbgCallStack.AnAddress, nil,
c + FDbgCallStack.FunctionName + FParamAsString,
FDbgCallStack.SourceFile, '', FDbgCallStack.Line, ddsValid);
FCallstackEntry.Init(FAnAddress, nil, c + FFunctionName + FParamAsString,
FSourceFile, '', FLine, ddsValid);
end;
end;

View File

@ -167,7 +167,10 @@ type
TFpThreadWorkerCallEntry = class(TFpThreadWorkerPrepareCallStackEntryList)
protected
FCallstackIndex: Integer;
FDbgCallStack: TDbgCallstackEntry;
FValid: Boolean;
FSrcClassName, FFunctionName, FSourceFile: String;
FAnAddress: TDBGPtr;
FLine: Integer;
FParamAsString: String;
procedure UpdateCallstackEntry_DecRef(Data: PtrInt = 0); virtual; abstract;
procedure DoExecute; override;
@ -598,11 +601,13 @@ procedure TFpThreadWorkerCallEntry.DoExecute;
var
PrettyPrinter: TFpPascalPrettyPrinter;
Prop: TFpDebugDebuggerProperties;
DbgCallStack: TDbgCallstackEntry;
begin
inherited DoExecute;
FDbgCallStack := FThread.CallStackEntryList[FCallstackIndex];
if (FDbgCallStack <> nil) and (not StopRequested) then begin
DbgCallStack := FThread.CallStackEntryList[FCallstackIndex];
FValid := (DbgCallStack <> nil) and (not StopRequested);
if FValid then begin
Prop := TFpDebugDebuggerProperties(FDebugger.GetProperties);
PrettyPrinter := TFpPascalPrettyPrinter.Create(DBGPTRSIZE[FDebugger.DbgController.CurrentProcess.Mode]);
PrettyPrinter.Context := FDebugger.DbgController.DefaultContext;
@ -611,7 +616,13 @@ begin
FDebugger.MemManager.MemLimits.MaxStringLen := Prop.MemLimits.MaxStackStringLen;
FDebugger.MemManager.MemLimits.MaxNullStringSearchLen := Prop.MemLimits.MaxStackNullStringSearchLen;
FParamAsString := FDbgCallStack.GetParamsAsString(PrettyPrinter);
FSrcClassName := DbgCallStack.SrcClassName;
FAnAddress := DbgCallStack.AnAddress;
FFunctionName := DbgCallStack.FunctionName;
FSourceFile := DbgCallStack.SourceFile;
FLine := DbgCallStack.Line;
FParamAsString := DbgCallStack.GetParamsAsString(PrettyPrinter);
PrettyPrinter.Free;
FDebugger.MemManager.MemLimits.MaxArrayLen := Prop.MemLimits.MaxArrayLen;