Procházet zdrojové kódy

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

git-svn-id: trunk@20462 -
marco před 13 roky
rodič
revize
b956e9e52d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      rtl/objpas/classes/persist.inc

+ 1 - 1
rtl/objpas/classes/persist.inc

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