зеркало из https://github.com/mozilla/gecko-dev.git
bug 1003935 - call dontreuse() on reclaimed conns with transaction refs r=sworkman
This commit is contained in:
Родитель
437ea5c26f
Коммит
1366b6fd61
|
@ -2366,6 +2366,13 @@ nsHttpConnectionMgr::OnMsgReclaimConnection(int32_t, void *param)
|
|||
ConditionallyStopTimeoutTick();
|
||||
}
|
||||
|
||||
// a connection that still holds a reference to a transaction was
|
||||
// not closed naturally (i.e. it was reset or aborted) and is
|
||||
// therefore not something that should be reused.
|
||||
if (conn->Transaction()) {
|
||||
conn->DontReuse();
|
||||
}
|
||||
|
||||
if (conn->CanReuse()) {
|
||||
LOG((" adding connection to idle list\n"));
|
||||
// Keep The idle connection list sorted with the connections that
|
||||
|
|
|
@ -1066,7 +1066,10 @@ nsHttpTransaction::Restart()
|
|||
|
||||
// clear old connection state...
|
||||
mSecurityInfo = 0;
|
||||
NS_IF_RELEASE(mConnection);
|
||||
if (mConnection) {
|
||||
mConnection->DontReuse();
|
||||
NS_RELEASE(mConnection);
|
||||
}
|
||||
|
||||
// disable pipelining for the next attempt in case pipelining caused the
|
||||
// reset. this is being overly cautious since we don't know if pipelining
|
||||
|
|
Загрузка…
Ссылка в новой задаче