From 3e27e189ee16615619b9da2b92175acb5a1535ec Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Mon, 10 Oct 2011 13:05:47 -0500 Subject: [PATCH] Adding missing release for _acceptableContentTypes in AFHTTPRequestOperation -dealloc --- AFNetworking/AFHTTPRequestOperation.m | 1 + 1 file changed, 1 insertion(+) diff --git a/AFNetworking/AFHTTPRequestOperation.m b/AFNetworking/AFHTTPRequestOperation.m index a842c95..6f052d5 100644 --- a/AFNetworking/AFHTTPRequestOperation.m +++ b/AFNetworking/AFHTTPRequestOperation.m @@ -44,6 +44,7 @@ - (void)dealloc { [_acceptableStatusCodes release]; + [_acceptableContentTypes release]; [_HTTPError release]; [super dealloc]; }