summaryrefslogtreecommitdiff
path: root/mozilla-1679933.patch
diff options
context:
space:
mode:
Diffstat (limited to 'mozilla-1679933.patch')
-rw-r--r--mozilla-1679933.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/mozilla-1679933.patch b/mozilla-1679933.patch
new file mode 100644
index 0000000..f49a24c
--- /dev/null
+++ b/mozilla-1679933.patch
@@ -0,0 +1,16 @@
+diff --git a/netwerk/base/nsNetUtil.cpp b/netwerk/base/nsNetUtil.cpp
+--- a/netwerk/base/nsNetUtil.cpp
++++ b/netwerk/base/nsNetUtil.cpp
+@@ -2714,9 +2714,8 @@
+ MOZ_ASSERT(XRE_IsParentProcess());
+ MOZ_ASSERT(NS_IsMainThread());
+
+- nsresult rv;
+- nsCOMPtr<nsISupports> psm = do_GetService(PSM_COMPONENT_CONTRACTID, &rv);
+- MOZ_ASSERT(NS_SUCCEEDED(rv));
++ DebugOnly<bool> rv = EnsureNSSInitializedChromeOrContent();
++ MOZ_ASSERT(rv);
+
+ #ifndef MOZ_NEW_CERT_STORAGE
+ nsCOMPtr<nsISupports> cbl = do_GetService(NS_CERTBLOCKLIST_CONTRACTID);
+
bgstack15