mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 737155 - httpconnectionmgr::processPendingQ allow more than 1 with pipeline r=honzab
--HG-- extra : rebase_source : 94c50c125fc66c9d5b4389e20b0187ee40c2e315
This commit is contained in:
parent
85224929d2
commit
800ed54ae5
@ -870,11 +870,14 @@ nsHttpConnectionMgr::ProcessPendingQForEntry(nsConnectionEntry *ent)
|
||||
|
||||
ProcessSpdyPendingQ(ent);
|
||||
|
||||
PRInt32 count = ent->mPendingQ.Length();
|
||||
PRUint32 count = ent->mPendingQ.Length();
|
||||
nsHttpTransaction *trans;
|
||||
nsresult rv;
|
||||
|
||||
for (PRInt32 i = 0; i < count; ++i) {
|
||||
bool dispatchedSuccessfully = false;
|
||||
|
||||
// iterate the pending list until one is dispatched successfully. Keep
|
||||
// iterating afterwards only until a transaction fails to dispatch.
|
||||
for (PRUint32 i = 0; i < count; ++i) {
|
||||
trans = ent->mPendingQ[i];
|
||||
|
||||
// When this transaction has already established a half-open
|
||||
@ -895,9 +898,17 @@ nsHttpConnectionMgr::ProcessPendingQForEntry(nsConnectionEntry *ent)
|
||||
LOG((" dispatching pending transaction...\n"));
|
||||
ent->mPendingQ.RemoveElementAt(i);
|
||||
NS_RELEASE(trans);
|
||||
return true;
|
||||
|
||||
// reset index and array length after RemoveElelmentAt()
|
||||
dispatchedSuccessfully = true;
|
||||
count = ent->mPendingQ.Length();
|
||||
--i;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (dispatchedSuccessfully)
|
||||
return true;
|
||||
|
||||
NS_ABORT_IF_FALSE(count == ((PRInt32) ent->mPendingQ.Length()),
|
||||
"something mutated pending queue from "
|
||||
"GetConnection()");
|
||||
|
Loading…
Reference in New Issue
Block a user