Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
asi-http-request
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Ben Copsey
2011-05-07 19:21:04 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ec59d275f28c6e8132dedca9f04e580dc5dfd8b1
ec59d275
1 parent
7219e0a7
ASIWebPageRequest - fix leak (closes gh-174)
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
Classes/ASIWebPageRequest/ASIWebPageRequest.m
Classes/ASIWebPageRequest/ASIWebPageRequest.m
View file @
ec59d27
...
...
@@ -369,7 +369,7 @@ static NSMutableArray *requestsUsingXMLParser = nil;
// Strip the content encoding if the original response was gzipped
if
([
self
isResponseCompressed
])
{
NSMutableDictionary
*
headers
=
[[
self
responseHeaders
]
mutableCopy
];
NSMutableDictionary
*
headers
=
[[
[
self
responseHeaders
]
mutableCopy
]
autorelease
];
[
headers
removeObjectForKey
:
@"Content-Encoding"
];
[
self
setResponseHeaders
:
headers
];
}
...
...
Please
register
or
login
to post a comment