summaryrefslogtreecommitdiff
path: root/mozilla-1694670.patch
diff options
context:
space:
mode:
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