mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 09:26:15 +02:00
* Don't use dispose for memory allocated with getmem.
git-svn-id: trunk@11446 -
This commit is contained in:
parent
2f5d8b0381
commit
453e82e001
@ -982,8 +982,8 @@ implementation
|
|||||||
end;
|
end;
|
||||||
asmlists[al_rtti].concat(Tai_symbol_end.create(rttilab));
|
asmlists[al_rtti].concat(Tai_symbol_end.create(rttilab));
|
||||||
end;
|
end;
|
||||||
dispose(syms);
|
freemem(syms);
|
||||||
dispose(offsets);
|
freemem(offsets);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure enumdef_rtti_string2ordindex(def:Tenumdef);
|
procedure enumdef_rtti_string2ordindex(def:Tenumdef);
|
||||||
@ -1074,8 +1074,8 @@ implementation
|
|||||||
end;
|
end;
|
||||||
asmlists[al_rtti].concat(Tai_symbol_end.create(rttilab));
|
asmlists[al_rtti].concat(Tai_symbol_end.create(rttilab));
|
||||||
end;
|
end;
|
||||||
dispose(syms);
|
freemem(syms);
|
||||||
dispose(offsets);
|
freemem(offsets);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user