From ab9f3b6fdf0307d243c37fddacade5b5768a9105 Mon Sep 17 00:00:00 2001 From: Catalin Iordache Date: Mon, 1 Jul 2013 09:45:17 -0400 Subject: [PATCH] Bug 887566 - Append elements to idle array in ReadConnectionEntry. r=valentin.gosu --- netwerk/protocol/http/nsHttpConnectionMgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netwerk/protocol/http/nsHttpConnectionMgr.cpp b/netwerk/protocol/http/nsHttpConnectionMgr.cpp index 9b4aa4524c0..d3603373043 100644 --- a/netwerk/protocol/http/nsHttpConnectionMgr.cpp +++ b/netwerk/protocol/http/nsHttpConnectionMgr.cpp @@ -3327,7 +3327,7 @@ nsHttpConnectionMgr::ReadConnectionEntry(const nsACString &key, HttpConnInfo info; info.ttl = ent->mIdleConns[i]->TimeToLive(); info.rtt = ent->mIdleConns[i]->Rtt(); - data.active.AppendElement(info); + data.idle.AppendElement(info); } data.spdy = ent->mUsingSpdy; data.ssl = ent->mConnInfo->UsingSSL();