Skip to content

Commit

Permalink
Bug 1750525: Add reason to IPC_FAIL in NormalTransaction::RecvPBackgr…
Browse files Browse the repository at this point in the history
…oundIDBRequestConstructor. r=dom-storage-reviewers,janv

Differential Revision: https://phabricator.services.mozilla.com/D136142
  • Loading branch information
jensstutte committed Mar 11, 2022
1 parent db65a0d commit fc271f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dom/indexedDB/ActorsParent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11161,7 +11161,7 @@ mozilla::ipc::IPCResult NormalTransaction::RecvPBackgroundIDBRequestConstructor(
MOZ_ASSERT(aParams.type() != RequestParams::T__None);

if (!StartRequest(aActor)) {
return IPC_FAIL_NO_REASON(this);
return IPC_FAIL(this, "StartRequest failed!");
}
return IPC_OK();
}
Expand Down

0 comments on commit fc271f8

Please sign in to comment.