vote up 3 vote down star

I'm maintaining a web application that has a memory leak.

Based on my investigation using Red Gate ANTS memory profiler I'm pretty sure that the memory leak is caused by event handlers in the business layer.

There's a collection that registers an event handler on each item that's added so that the collection can re-sort when the item's date is changed. It appears that this event handler is the culprit.

The business layer for this application is quite complicated, so keeping the collection and its items in memory drags a bunch of other objects with it.

I've implemented IDisposable on the collection and removed the event handlers in the Dispose method:

p.OnPunchDateChanged -= this.OnPunchDateChanged;

However, implementing IDisposable doesn't help since I can't wrap all the references to the collection in using or try/catch blocks. This collection is used by portions of the application that I don't have control over.

How can I clear these event handlers to resolve this memory leak?

flag

I have a question: do you ever call the Dispose method? Or you are relying on the using() statement to do that for you only? – Conrad Jan 16 at 4:30

2 Answers

vote up 0 vote down

First off, just to prove the point, try logging the adding and removal of events to a simple text file. Then, check how many were added vs removed.

It sounds as if there is a bug somewhere in the business logic which is not unregistering the event in all circumstances.

link|flag
vote up 1 vote down

If you've "correctly" implemented IDisposable then the events will be unregistered when the object is destroyed via garbage collection (even if the Dispose() method is not explicitly called by consumers of your class).

Here are some references for you:

"Note that even when you provide explicit control by way of Dispose, you should provide implicit cleanup using the Finalize method. Finalize provides a backup to prevent resources from permanently leaking if the programmer fails to call Dispose."

link|flag

Your Answer

Get an OpenID
or

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