Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 1670062

Browse files
committed
Bug 1556479 - Fix log in nsHttpConnectionMgr::OnMsgNewTransaction to be trackable in logan, r=valentin
Differential Revision: https://phabricator.services.mozilla.com/D33530
1 parent 2ee8014 commit 1670062

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

netwerk/protocol/http/nsHttpConnectionMgr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2343,9 +2343,9 @@ void nsHttpConnectionMgr::OnMsgShutdownConfirm(int32_t priority,
23432343

23442344
void nsHttpConnectionMgr::OnMsgNewTransaction(int32_t priority,
23452345
ARefBase* param) {
2346-
LOG(("nsHttpConnectionMgr::OnMsgNewTransaction [trans=%p]\n", param));
2347-
23482346
nsHttpTransaction* trans = static_cast<nsHttpTransaction*>(param);
2347+
2348+
LOG(("nsHttpConnectionMgr::OnMsgNewTransaction [trans=%p]\n", trans));
23492349
trans->SetPriority(priority);
23502350
nsresult rv = ProcessNewTransaction(trans);
23512351
if (NS_FAILED(rv)) trans->Close(rv); // for whatever its worth

0 commit comments

Comments
 (0)