Преглед на файлове

Check whether the globalsymtable is not Nil before using it! Otherwise an access violation occurs when compiling a program that contains specializations.

git-svn-id: trunk@19819 -
svenbarth преди 13 години
родител
ревизия
52a6699d55
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      compiler/pgenutil.pas

+ 1 - 1
compiler/pgenutil.pas

@@ -319,7 +319,7 @@ uses
             else
               { the generic could have been specialized in the globalsymtable
                 already, so search there as well }
-              if specializest<>current_module.globalsymtable then
+              if (specializest<>current_module.globalsymtable) and assigned(current_module.globalsymtable) then
                 begin
                   srsym:=tsym(current_module.globalsymtable.findwithhash(hashedid));
                   if assigned(srsym) then