This CL initialize NSData in HTTPMultipartUpload.m to nil.
Problem introduced by issue 2764002. R=qsr@chromium.org Review URL: https://breakpad.appspot.com/2794002 Patch from Oliver Robin <olivierrobin@chromium.org>. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1374 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
7883a83082
commit
c75e316359
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@
|
|||
[response_ release];
|
||||
response_ = nil;
|
||||
|
||||
NSData *data;
|
||||
NSData *data = nil;
|
||||
if ([[req URL] isFileURL]) {
|
||||
[[req HTTPBody] writeToURL:[req URL] options:0 error:error];
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue