From dd15a058908834a2f94a0c314d443274dadc53c6 Mon Sep 17 00:00:00 2001 From: Benjamin Beurdouche Date: Tue, 27 Oct 2020 15:24:46 +0000 Subject: [PATCH] Bug 1665295 - Remove unnecessary assertion on getting nsICertStorage on AppShutdown. r=keeler Differential Revision: https://phabricator.services.mozilla.com/D91890 --- xpcom/base/AppShutdown.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/xpcom/base/AppShutdown.cpp b/xpcom/base/AppShutdown.cpp index a3a6ebe1dafa..c53eda4f6285 100644 --- a/xpcom/base/AppShutdown.cpp +++ b/xpcom/base/AppShutdown.cpp @@ -164,7 +164,6 @@ void AppShutdown::MaybeFastShutdown(ShutdownPhase aPhase) { nsCOMPtr certStorage = do_GetService("@mozilla.org/security/certstorage;1", &rv); - NS_ASSERTION(NS_SUCCEEDED(rv), "Could not get nsICertStorage"); if (NS_SUCCEEDED(rv)) { SpinEventLoopUntil([&]() { int32_t remainingOps;