Skip to content

Commit

Permalink
EGOImageLoadConnection was not releasing its _responseData instance v…
Browse files Browse the repository at this point in the history
…ariable. This was causing a memory leak in my application.
  • Loading branch information
Andrés Mejía committed Nov 6, 2010
1 parent 3a28f93 commit bca5986
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions EGOImageLoader/EGOImageLoadConnection.m
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ - (void)dealloc {
self.delegate = nil;
[_connection release];
[_imageURL release];
[_responseData release];
[super dealloc];
}

Expand Down

0 comments on commit bca5986

Please sign in to comment.