mozilla-aarch64-startup-crash.patch
author Wolfgang Rosenauer <wr@rosenauer.org>
Sat, 23 Jun 2018 09:14:31 +0200
changeset 1060 5ce9d1f6be41
parent 1033 51bfdd19b9e9
child 1067 735b140fb042
child 1090 554cd9503f75
permissions -rw-r--r--
new beta

# HG changeset patch
# Parent a5cfa3aa11a9d3391df49de6fc5a0e5232c12c10
# Parent  3005da37da3f1e2c568b1675307d10860182d214
Bug 991344 - Rpi3: Firefox crashes after a few seconds of usage

diff --git a/netwerk/base/nsIOService.cpp b/netwerk/base/nsIOService.cpp
--- a/netwerk/base/nsIOService.cpp
+++ b/netwerk/base/nsIOService.cpp
@@ -887,17 +887,23 @@ nsIOService::NewChannelFromURIWithProxyF
                     "doesn't support nsIUploadChannel2. An extension has "
                     "supplied a non-functional http protocol handler. This will "
                     "break behavior and in future releases not work at all.");
             }
             gHasWarnedUploadChannel2 = true;
         }
     }
 
+#if defined(__aarch64__)
+    if (result) {
+        channel.forget(result);
+    }
+#else
     channel.forget(result);
+#endif
     return NS_OK;
 }
 
 NS_IMETHODIMP
 nsIOService::NewChannelFromURIWithProxyFlags2(nsIURI* aURI,
                                               nsIURI* aProxyURI,
                                               uint32_t aProxyFlags,
                                               nsIDOMNode* aLoadingNode,