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-04-11 10:16:44 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
81e8e72215fb5e3a5c3b38e772a4a0b959998c37
81e8e722
1 parent
95a7a76d
Fix leak and change comment to reflect new behaviour
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
Classes/ASIHTTPRequest.h
Classes/ASIHTTPRequest.m
Classes/ASIHTTPRequest.h
View file @
81e8e72
...
...
@@ -192,7 +192,7 @@ typedef void (^ASIDataBlock)(NSData *data);
NSString
*
username
;
NSString
*
password
;
//
Global User-Agent for requests unless one is provided for a specific
request
//
User-Agent for this
request
NSString
*
userAgent
;
// Domain used for NTLM authentication
...
...
Classes/ASIHTTPRequest.m
View file @
81e8e72
...
...
@@ -389,6 +389,7 @@ static NSOperationQueue *sharedQueue = nil;
[
connectionInfo
release
];
[
requestID
release
];
[
dataDecompressor
release
];
[
userAgent
release
];
#if NS_BLOCKS_AVAILABLE
[
self
releaseBlocksOnMainThread
];
...
...
Please
register
or
login
to post a comment