Bug 561536. Make sure to call OnStartRequest even if we're failing on an SSL CONNECT. Patch by Boris Zbarsky <bzbarsky@mit.edu>, r=jduell, a1.9.0.next=dveditz

git-svn-id: svn://10.0.0.236/trunk@260888 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
alqahira%ardisson.org 2010-07-26 04:25:45 +00:00
parent b084a3bc39
commit 6ab64cd8ca

View File

@ -836,6 +836,7 @@ nsHttpChannel::ProcessFailedSSLConnect(PRUint32 httpStatus)
LOG(("Cancelling failed SSL proxy connection [this=%x httpStatus=%u]\n", LOG(("Cancelling failed SSL proxy connection [this=%x httpStatus=%u]\n",
this, httpStatus)); this, httpStatus));
Cancel(rv); Cancel(rv);
CallOnStartRequest();
return rv; return rv;
} }