summaryrefslogtreecommitdiff
path: root/mozilla-1694670.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-03-12 12:36:34 +0100
committerMartin Stransky <stransky@redhat.com>2021-03-12 12:36:34 +0100
commit5e9102a9fef93bd0584c5e20c42c02f80f0921ec (patch)
treeeb6d01f46f2e02046009d7bb78300487cc426642 /mozilla-1694670.patch
parentTemporary disable ppc64le/Fedora 35 due to https://bugzilla.redhat.com/show_b... (diff)
downloadlibrewolf-fedora-ff-5e9102a9fef93bd0584c5e20c42c02f80f0921ec.tar.gz
librewolf-fedora-ff-5e9102a9fef93bd0584c5e20c42c02f80f0921ec.tar.bz2
librewolf-fedora-ff-5e9102a9fef93bd0584c5e20c42c02f80f0921ec.zip
Update to latest upstream (86.0.1)
Diffstat (limited to 'mozilla-1694670.patch')
-rw-r--r--mozilla-1694670.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/mozilla-1694670.patch b/mozilla-1694670.patch
deleted file mode 100644
index 7c5eb79..0000000
--- a/mozilla-1694670.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/gfx/qcms/src/iccread.rs b/gfx/qcms/src/iccread.rs
---- a/gfx/qcms/src/iccread.rs
-+++ b/gfx/qcms/src/iccread.rs
-@@ -229,7 +229,7 @@
- read_u16(mem, offset)
- }
- pub fn write_u32(mem: &mut [u8], offset: usize, value: u32) {
-- if offset <= mem.len() - std::mem::size_of_val(&value) {
-+ if offset > mem.len() - std::mem::size_of_val(&value) {
- panic!("OOB");
- }
- let mem = mem.as_mut_ptr();
-@@ -238,7 +238,7 @@
- }
- }
- pub fn write_u16(mem: &mut [u8], offset: usize, value: u16) {
-- if offset <= mem.len() - std::mem::size_of_val(&value) {
-+ if offset > mem.len() - std::mem::size_of_val(&value) {
- panic!("OOB");
- }
- let mem = mem.as_mut_ptr();
-
bgstack15