lazdebuggers: fixed crash if watchlist empty, bug #29238 form Anton

git-svn-id: branches/fixes_1_6@51000 -
This commit is contained in:
mattias 2015-12-22 22:43:50 +00:00
parent 7b8e54a4a7
commit a3fcea8852

View File

@ -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