Browse Source

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

Sven/Sarah Barth 8 tháng trước cách đây
mục cha
commit
7fe7e26659
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;