* call ArSymbols.Free instead of .Destroy in the tarobjectreader destructor

(because .destroy will cause a crash in case the object hasn't been
  initialized)

git-svn-id: trunk@30762 -
This commit is contained in:
nickysn 2015-05-02 10:50:29 +00:00
parent 5160c8f0a3
commit 74c74b6a88

View File

@ -342,7 +342,7 @@ implementation
destructor tarobjectreader.destroy;
begin
inherited closefile;
ArSymbols.destroy;
ArSymbols.Free;
if assigned(LFNStrs) then
FreeMem(LFNStrs);
inherited Destroy;