diff --git a/dom/indexedDB/ActorsParent.cpp b/dom/indexedDB/ActorsParent.cpp index 013b5f446005..67b0a6894129 100644 --- a/dom/indexedDB/ActorsParent.cpp +++ b/dom/indexedDB/ActorsParent.cpp @@ -21483,10 +21483,8 @@ mozilla::ipc::IPCResult Utils::RecvDeleteMe() { AssertIsOnBackgroundThread(); MOZ_ASSERT(!mActorDestroyed); - IProtocol* mgr = Manager(); - if (!PBackgroundIndexedDBUtilsParent::Send__delete__(this)) { - return IPC_FAIL_NO_REASON(mgr); - } + QM_WARNONLY_TRY(OkIf(PBackgroundIndexedDBUtilsParent::Send__delete__(this))); + return IPC_OK(); }