try..finally (with exit)

edited 8:06PM in FastScript
Hello,

I have a question, see the following PascalScript code:
sl := TStringList.Create;
try
  {... something to do ...}
  if sl.Count > 100 then
    Exit;
finally
  sl.Free;
end;

In this case is the sl.Free statement executed? Delphi executes all statements inside the finally block before exiting, but I'm experiencing a few memory leaks and I'm trying to point out the reason...

Thanks in advance!

Comments

  • edited 8:06PM
    It should works well in latest version of FS.

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.