diff options
author | Martin Stransky <stransky@redhat.com> | 2015-01-06 12:28:31 +0100 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2015-01-06 12:28:31 +0100 |
commit | 8ef0a520c1b934479b19885dde0e131386871a70 (patch) | |
tree | cf77a7281c82e16630d7fa30e092430dc4c65fab /mozilla-1050258.patch | |
parent | Fixed rhbz#1014858 - GLib-CRITICAL **: g_slice_set_config: assertion sys_page... (diff) | |
download | librewolf-fedora-ff-8ef0a520c1b934479b19885dde0e131386871a70.tar.gz librewolf-fedora-ff-8ef0a520c1b934479b19885dde0e131386871a70.tar.bz2 librewolf-fedora-ff-8ef0a520c1b934479b19885dde0e131386871a70.zip |
Update to 35.0 Build 1
Diffstat (limited to 'mozilla-1050258.patch')
-rw-r--r-- | mozilla-1050258.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/mozilla-1050258.patch b/mozilla-1050258.patch deleted file mode 100644 index e00fbba..0000000 --- a/mozilla-1050258.patch +++ /dev/null @@ -1,29 +0,0 @@ -# HG changeset patch -# User Douglas Crosher <dtc-moz@scieneer.com> -# Date 1415349848 -39600 -# Fri Nov 07 19:44:08 2014 +1100 -# Node ID b98d6205da98b5bec30b0677c30a6d09f351f4b8 -# Parent 17e19083908620e8a83876e49bac6f6ba2fcc272 -Bug 1050258 - ARM hard-float XPCOM: correct argument passing. - -diff --git a/xpcom/reflect/xptcall/md/unix/xptcinvoke_arm.cpp b/xpcom/reflect/xptcall/md/unix/xptcinvoke_arm.cpp ---- a/xpcom/reflect/xptcall/md/unix/xptcinvoke_arm.cpp -+++ b/xpcom/reflect/xptcall/md/unix/xptcinvoke_arm.cpp -@@ -219,16 +219,17 @@ static inline void copy_dword(uint32_t* - { - if (ireg_args + 1 < end) { - if ((uint32_t)ireg_args & 4) { - ireg_args++; - } - *(uint64_t *)ireg_args = data; - ireg_args += 2; - } else { -+ ireg_args = end; - if ((uint32_t)stack_args & 4) { - stack_args++; - } - *(uint64_t *)stack_args = data; - stack_args += 2; - } - } - |