Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Delphi XE, the following code will cause memory leak:

procedure TForm1.Button1Click(Sender: TObject);
var P, B: TProc;
begin
  B := procedure
       begin
       end;

  P := procedure
       begin
         B;
       end;
end;

Run the code with

ReportMemoryLeaksOnShutdown := True;

and the memory manager prompt:

21-28 bytes: TForm1.Button1Click$ActRec x 1
share|improve this question
2  
@Ken: 21-28 bytes in this particular (highly simplified) example. But if this is happening in a loop, that can add up over time... – Mason Wheeler Jun 8 '11 at 2:32
@Mason: I'm not sure why you would use anonymous methods in any type of loop where this would matter. Maybe I'm missing something, but this probably would only be an issue in an app that runs a long time (like on a server), and I'd question the use of the methods in that case. – Ken White Jun 8 '11 at 2:45
@Ken: Just off the top of my head, check out OmniThreadLibrary, which can be highly useful for heavily multithreaded apps (such as servers!) and uses a lot of anonymous methods and loops under the hood. – Mason Wheeler Jun 8 '11 at 2:52
2  
@Ken: The anonymous method shown in the example is not meaningful. I post this question to try to illustrate a simple usage of anonymous method that cause memory leaks. I already simplified my example here to pin point the problem. My real case is far longer and meaningless for asking in SO. – Chau Chee Yang Jun 8 '11 at 3:15

2 Answers

up vote 9 down vote accepted

This is a bug in the compiler (as far as I know). I opened QC83259 in Embarcadero's quality central about it.

You can work around this bug by creating the anonymous procedure in a routine. The following code won't leak.

procedure TForm1.Button1Click(Sender: TObject);
var P, B: TProc;
begin
  B := GetMethod(); //Note, the "()" are necessary in this situation.
  P := procedure
  begin
    B;
  end;
end;


function TForm1.GetMethod: TProc;
begin
  Result := procedure
  begin
  end;
end;
share|improve this answer

This is due to the way anonymous methods work. Anonymous methods are implemented as TInterfacedObject descendants, and if you have more than one in the same routine, they end up as two methods of the same object. It uses interfaces for reference counting so you don't end up leaking the objects. However, if an anonymous method references itself, that ends up throwing off the reference count and causing a memory leak. What you're seeing here is caused by a combination of these two things.

share|improve this answer
Shall we consider this is a bug? Or this is it's nature working behavior? – Chau Chee Yang Jun 8 '11 at 3:18
1  
@Chau: See Barry Kelly's comment on the second post. This is its normal behavior, and it's a problem without an easy solution. If you want this to not happen, you'll have to restructure your code in some way. – Mason Wheeler Jun 8 '11 at 3:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.