diff options
-rw-r--r-- | content/common/url_fetcher.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/content/common/url_fetcher.cc b/content/common/url_fetcher.cc index bb066a8..76b5516 100644 --- a/content/common/url_fetcher.cc +++ b/content/common/url_fetcher.cc @@ -745,7 +745,7 @@ void URLFetcher::Core::RetryOrCompleteUrlFetch() { } else { backoff_delay = base::TimeDelta(); } - + request_context_getter_ = NULL; bool posted = delegate_loop_proxy_->PostTask( FROM_HERE, NewRunnableMethod(this, @@ -755,7 +755,6 @@ void URLFetcher::Core::RetryOrCompleteUrlFetch() { // If the delegate message loop does not exist any more, then the delegate // should be gone too. DCHECK(posted || !delegate_); - request_context_getter_ = NULL; } void URLFetcher::Core::ReadResponse() { |