mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 03:59:17 +02:00
lazdebuggers: fixed crash if watchlist empty, bug #29238 form Anton
git-svn-id: branches/fixes_1_6@51000 -
This commit is contained in:
parent
7b8e54a4a7
commit
a3fcea8852
@ -1752,7 +1752,8 @@ begin
|
||||
inherited DoState(OldState);
|
||||
if not (State in [dsPause, dsInternalPause]) then
|
||||
begin
|
||||
FWatchEvalList.Clear;
|
||||
if Assigned(FWatchEvalList) then
|
||||
FWatchEvalList.Clear;
|
||||
FWatchAsyncQueued := False;
|
||||
end;
|
||||
finally
|
||||
|
Loading…
Reference in New Issue
Block a user