| Index: net/url_request/url_request_http_job.cc
|
| ===================================================================
|
| --- net/url_request/url_request_http_job.cc (revision 9103)
|
| +++ net/url_request/url_request_http_job.cc (working copy)
|
| @@ -329,7 +329,10 @@
|
| }
|
|
|
| void URLRequestHttpJob::ContinueDespiteLastError() {
|
| - DCHECK(transaction_.get());
|
| + // If the transaction was destroyed, then the job was cancelled.
|
| + if (!transaction_.get())
|
| + return;
|
| +
|
| DCHECK(!response_info_) << "should not have a response yet";
|
|
|
| // No matter what, we want to report our status as IO pending since we will
|
|
|