Browse Source

* reset aktobjectdef before compilation, resolves #10971

git-svn-id: trunk@10874 -
florian 17 years ago
parent
commit
19c7d1d14c
1 changed files with 2 additions and 1 deletions
  1. 2 1
      compiler/symtable.pas

+ 2 - 1
compiler/symtable.pas

@@ -2127,7 +2127,7 @@ implementation
                            Init/Done Symtable
 ****************************************************************************}
 
-   procedure IniTSymtable;
+   procedure InitSymtable;
      begin
        { Reset symbolstack }
        symtablestack:=nil;
@@ -2147,6 +2147,7 @@ implementation
        class_tobject:=nil;
        interface_iunknown:=nil;
        rec_tguid:=nil;
+       aktobjectdef:=nil;
        dupnr:=0;
      end;