* call inherited Destroy in TAsmOptimizer to avoid memory leak

git-svn-id: trunk@21706 -
This commit is contained in:
florian 2012-06-25 20:19:19 +00:00
parent 6ae2a43161
commit 117c083003

View File

@ -298,7 +298,8 @@ Unit aopt;
Begin
if assigned(LabelInfo^.LabelTable) then
Freemem(LabelInfo^.LabelTable);
Dispose(LabelInfo)
Dispose(LabelInfo);
inherited Destroy;
End;