Skip to content
This repository has been archived by the owner on May 25, 2020. It is now read-only.

Commit

Permalink
Fix the build
Browse files Browse the repository at this point in the history
  • Loading branch information
clee committed Sep 23, 2007
1 parent d121bb5 commit 04ff58e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Flickr.m
Expand Up @@ -341,7 +341,7 @@ - (NSString *)uploadPicture: (NSString *)pathToJPG
CFURLRef _uploadURL = CFURLCreateWithString(kCFAllocatorDefault, (CFStringRef)FLICKR_UPLOAD_URL, NULL);
CFHTTPMessageRef _request = CFHTTPMessageCreateRequest(kCFAllocatorDefault, CFSTR("POST"), _uploadURL, kCFHTTPVersion1_1);
CFRelease(_uploadURL);
uploadURL = NULL;
_uploadURL = NULL;

CFHTTPMessageSetHeaderFieldValue(_request, CFSTR("Content-Type"), CFSTR(CONTENT_TYPE));
CFHTTPMessageSetHeaderFieldValue(_request, CFSTR("Host"), CFSTR("api.flickr.com"));
Expand Down

0 comments on commit 04ff58e

Please sign in to comment.