aboutsummaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bug1694670
diff options
context:
space:
mode:
Diffstat (limited to 'www/firefox/files/patch-bug1694670')
-rw-r--r--www/firefox/files/patch-bug169467022
1 files changed, 0 insertions, 22 deletions
diff --git a/www/firefox/files/patch-bug1694670 b/www/firefox/files/patch-bug1694670
deleted file mode 100644
index 7f5773b38b0e..000000000000
--- a/www/firefox/files/patch-bug1694670
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git gfx/qcms/src/iccread.rs gfx/qcms/src/iccread.rs
---- gfx/qcms/src/iccread.rs
-+++ 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();
-