Issue 3772: Distributed reliability test failures with NewHTTP
http://code.google.com/p/chromium/issues/detail?id=3772

Comment #2 by [EMAIL PROTECTED]:
I don't have a good idea on what might have caused this crash.
In HttpCache::Transaction::BeginNetworkRequest() we have just
created a transaction and started it:

int HttpCache::Transaction::BeginNetworkRequest() {
   DCHECK(mode_ & WRITE || mode_ == NONE);
   DCHECK(!network_trans_.get());

   network_trans_.reset(cache_->network_layer_->CreateTransaction());
   if (!network_trans_.get())
     return net::ERR_FAILED;

   int rv = network_trans_->Start(request_, &network_info_callback_); <==  
line 678
   if (rv != ERR_IO_PENDING)
     OnNetworkInfoAvailable(rv);
   return rv;
}

This is the line of the crash.  The value of 'result' is 1611:

int HttpNetworkTransaction::DoReadHeadersComplete(int result) {
...
   // And, we are done with the Start or the SSL tunnel CONNECT sequence.
   return DidReadResponseHeaders(); <=== 689
}



-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Chromium-bugs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/chromium-bugs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to