Browse Source

re-add accidently dropped patch

Frank-Rainer Grahl 5 months ago
parent
commit
1a715a28a8
2 changed files with 29 additions and 0 deletions
  1. 28 0
      comm-release/patches/1433388-60a1.patch
  2. 1 0
      comm-release/patches/series

+ 28 - 0
comm-release/patches/1433388-60a1.patch

@@ -0,0 +1,28 @@
+# HG changeset patch
+# User Jorg K <jorgk@jorgk.com>
+# Date 1516959845 -3600
+# Node ID ed0e5a9bf28a0d75b1c0618833bd9e319b6136f8
+# Parent  1cf1a10ead69a48b7a1407f908503aabbf52bfa0
+Bug 1433388 - Port 1425458 to mailnews: Add aPerformanceStorage argument to NS_NewChannel() call. rs=bustage-fix
+
+diff --git a/mailnews/compose/src/nsURLFetcher.cpp b/mailnews/compose/src/nsURLFetcher.cpp
+--- a/mailnews/compose/src/nsURLFetcher.cpp
++++ b/mailnews/compose/src/nsURLFetcher.cpp
+@@ -317,16 +317,17 @@ nsURLFetcher::FireURLRequest(nsIURI *aUR
+   NS_ENSURE_TRUE(pURILoader, NS_ERROR_FAILURE);
+ 
+   nsCOMPtr<nsIChannel> channel;
+   rv = NS_NewChannel(getter_AddRefs(channel),
+                      aURL,
+                      nsContentUtils::GetSystemPrincipal(),
+                      nsILoadInfo::SEC_ALLOW_CROSS_ORIGIN_DATA_IS_NULL,
+                      nsIContentPolicy::TYPE_OTHER,
++                     nullptr, // aPerformanceStorage
+                      nullptr, // aLoadGroup
+                      this); // aCallbacks
+   NS_ENSURE_SUCCESS(rv, rv);
+ 
+   return pURILoader->OpenURI(channel, false, this);
+ }
+ 
+ nsresult

+ 1 - 0
comm-release/patches/series

@@ -2156,3 +2156,4 @@ TOP-1872623-cancelbookmark-25319.patch
 1897801-about-seamonkey-25319.patch
 1437393-fontsasync-25319.patch
 1896174-checkbox-25319.patch
+1433388-60a1.patch