4
votes
What Happens to an Object That Falls Out of Scope in Delphi?
It becomes leaked memory.
You should typically surround such allocations thus:
locallist := TStringList.Create;
try
// work with locallist here
finally
locallist …
