diff options
author | Honza Bambas <honzab.moz@firemni.cz> | 2019-07-20 15:36:09 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-07-20 15:36:09 +0200 |
commit | b7807cd00b4930639c8d536887a0b54d61c793ee (patch) | |
tree | 0105eadff98fd7187a439beefa173dbb5050532b /netwerk/protocol | |
parent | 8b7daa5369f74b4402f0912c0c64be474f053b0a (diff) | |
download | UXP-b7807cd00b4930639c8d536887a0b54d61c793ee.tar UXP-b7807cd00b4930639c8d536887a0b54d61c793ee.tar.gz UXP-b7807cd00b4930639c8d536887a0b54d61c793ee.tar.lz UXP-b7807cd00b4930639c8d536887a0b54d61c793ee.tar.xz UXP-b7807cd00b4930639c8d536887a0b54d61c793ee.zip |
Bug 1548822.
Diffstat (limited to 'netwerk/protocol')
-rw-r--r-- | netwerk/protocol/http/nsHttpConnectionMgr.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/netwerk/protocol/http/nsHttpConnectionMgr.cpp b/netwerk/protocol/http/nsHttpConnectionMgr.cpp index dff08088a..d402b4104 100644 --- a/netwerk/protocol/http/nsHttpConnectionMgr.cpp +++ b/netwerk/protocol/http/nsHttpConnectionMgr.cpp @@ -373,8 +373,12 @@ nsHttpConnectionMgr::VerifyTraffic() nsresult nsHttpConnectionMgr::DoShiftReloadConnectionCleanup(nsHttpConnectionInfo *aCI) { + RefPtr<nsHttpConnectionInfo> ci; + if (aCI) { + ci = aCI->Clone(); + } return PostEvent(&nsHttpConnectionMgr::OnMsgDoShiftReloadConnectionCleanup, - 0, aCI); + 0, ci); } class SpeculativeConnectArgs : public ARefBase @@ -507,8 +511,8 @@ nsresult nsHttpConnectionMgr::ProcessPendingQ(nsHttpConnectionInfo* aCI) { LOG(("nsHttpConnectionMgr::ProcessPendingQ [ci=%s]\n", aCI->HashKey().get())); - RefPtr<nsHttpConnectionInfo> ci;
- if (aCI) {
+ RefPtr<nsHttpConnectionInfo> ci; + if (aCI) { ci = aCI->Clone(); } return PostEvent(&nsHttpConnectionMgr::OnMsgProcessPendingQ, 0, ci); |