瀏覽代碼

* use dispose() instead of freemem() for consistency with the allocation of pmessagestaterecord

Sven/Sarah Barth 8 月之前
父節點
當前提交
7fe7e26659
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      compiler/verbose.pas

+ 1 - 1
compiler/verbose.pas

@@ -189,7 +189,7 @@ implementation
         while assigned(pstate) do
           begin
             unaligned(fstate):=pstate^.next;
-            freemem(pstate);
+            dispose(pstate);
             pstate:=unaligned(fstate);
           end;
       end;