LazDebuggerFPDServer: Fixed possible AV

git-svn-id: trunk@49235 -
This commit is contained in:
joost 2015-05-31 19:24:12 +00:00
parent abdada70fe
commit 533cb5e719

View File

@ -192,7 +192,8 @@ end;
destructor TFPDSendCallStackCommand.Destroy;
begin
FCallStack.RemoveFreeNotification(@DoCallStackFreed);
if assigned(FCallStack) then
FCallStack.RemoveFreeNotification(@DoCallStackFreed);
inherited Destroy;
end;