From bca59862cc45090ab5b7d3ac7e645aab270babed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Mej=C3=ADa?= Date: Sat, 6 Nov 2010 15:47:11 +0100 Subject: [PATCH] EGOImageLoadConnection was not releasing its _responseData instance variable. This was causing a memory leak in my application. --- EGOImageLoader/EGOImageLoadConnection.m | 1 + 1 file changed, 1 insertion(+) diff --git a/EGOImageLoader/EGOImageLoadConnection.m b/EGOImageLoader/EGOImageLoadConnection.m index c6ca851..eeb06d9 100644 --- a/EGOImageLoader/EGOImageLoadConnection.m +++ b/EGOImageLoader/EGOImageLoadConnection.m @@ -90,6 +90,7 @@ - (void)dealloc { self.delegate = nil; [_connection release]; [_imageURL release]; + [_responseData release]; [super dealloc]; }