* add a check to TRecall.store for FStorage=nil. Patch by Luiz, Mantis #21404

git-svn-id: trunk@20462 -
This commit is contained in:
marco 2012-03-02 09:43:12 +00:00
parent ae1ece93e5
commit b956e9e52d

View File

@ -142,7 +142,7 @@ end;
procedure TRecall.Store;
begin
if Assigned(FReference) then
if Assigned(FStorage) and Assigned(FReference) then
FStorage.Assign(FReference);
end;