diff options
author | Martin Stransky <stransky@redhat.com> | 2018-04-27 10:46:56 +0200 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2018-04-27 10:46:56 +0200 |
commit | b461a258ac6c3f4b54e636bc0bb1146dba8e153b (patch) | |
tree | 77151071960f2925f9b870877fa65ce8327c5208 /mozilla-fix-attr-order.patch | |
parent | Merge branch 'master' into f27 (diff) | |
parent | Update to 60.0 Beta 16 (diff) | |
download | librewolf-fedora-ff-b461a258ac6c3f4b54e636bc0bb1146dba8e153b.tar.gz librewolf-fedora-ff-b461a258ac6c3f4b54e636bc0bb1146dba8e153b.tar.bz2 librewolf-fedora-ff-b461a258ac6c3f4b54e636bc0bb1146dba8e153b.zip |
Merge branch 'master' into f27
Diffstat (limited to 'mozilla-fix-attr-order.patch')
-rw-r--r-- | mozilla-fix-attr-order.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/mozilla-fix-attr-order.patch b/mozilla-fix-attr-order.patch deleted file mode 100644 index aef2d25..0000000 --- a/mozilla-fix-attr-order.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff -up mozilla-beta-64737c752ac4af4766ad6f82720818521f3aca24/media/webrtc/trunk/webrtc/common_audio/vad/vad_core.c.fix-attr-order mozilla-beta-64737c752ac4af4766ad6f82720818521f3aca24/media/webrtc/trunk/webrtc/common_audio/vad/vad_core.c ---- mozilla-beta-64737c752ac4af4766ad6f82720818521f3aca24/media/webrtc/trunk/webrtc/common_audio/vad/vad_core.c.fix-attr-order 2018-02-03 11:59:21.173058184 -0500 -+++ mozilla-beta-64737c752ac4af4766ad6f82720818521f3aca24/media/webrtc/trunk/webrtc/common_audio/vad/vad_core.c 2018-02-03 11:59:44.727509671 -0500 -@@ -115,8 +115,8 @@ static int32_t WeightedAverage(int16_t* - // undefined behavior, so not a good idea; this just makes UBSan ignore the - // violation, so that our old code can continue to do what it's always been - // doing.) --static inline int32_t OverflowingMulS16ByS32ToS32(int16_t a, int32_t b) -- RTC_NO_SANITIZE("signed-integer-overflow") { -+RTC_NO_SANITIZE("signed-integer-overflow") static inline int32_t OverflowingMulS16ByS32ToS32(int16_t a, int32_t b) -+{ - return a * b; - } - -diff -up mozilla-beta-64737c752ac4af4766ad6f82720818521f3aca24/media/webrtc/trunk/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c.fix-attr-order mozilla-beta-64737c752ac4af4766ad6f82720818521f3aca24/media/webrtc/trunk/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c ---- mozilla-beta-64737c752ac4af4766ad6f82720818521f3aca24/media/webrtc/trunk/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c.fix-attr-order 2018-02-03 12:00:01.033129964 -0500 -+++ mozilla-beta-64737c752ac4af4766ad6f82720818521f3aca24/media/webrtc/trunk/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c 2018-02-03 12:00:45.758088456 -0500 -@@ -209,8 +209,8 @@ void WebRtcIsacfix_NormLatticeFilterMa(s - // Left shift of an int32_t that's allowed to overflow. (It's still undefined - // behavior, so not a good idea; this just makes UBSan ignore the violation, so - // that our old code can continue to do what it's always been doing.) --static inline int32_t OverflowingLShiftS32(int32_t x, int shift) -- RTC_NO_SANITIZE("shift") { -+RTC_NO_SANITIZE("shift") static inline int32_t OverflowingLShiftS32(int32_t x, int shift) -+{ - return x << shift; - } - |