summaryrefslogtreecommitdiff
path: root/external/neon/ubsan.patch
diff options
context:
space:
mode:
Diffstat (limited to 'external/neon/ubsan.patch')
-rw-r--r--external/neon/ubsan.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/external/neon/ubsan.patch b/external/neon/ubsan.patch
deleted file mode 100644
index 56445fcb7e17..000000000000
--- a/external/neon/ubsan.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/ne_compress.c
-+++ src/ne_compress.c
-@@ -81,7 +81,7 @@
- };
-
- /* Convert 'buf' to unsigned int; 'buf' must be 'unsigned char *' */
--#define BUF2UINT(buf) (((buf)[3]<<24) + ((buf)[2]<<16) + ((buf)[1]<<8) + (buf)[0])
-+#define BUF2UINT(buf) (((unsigned)((buf)[3])<<24) + ((buf)[2]<<16) + ((buf)[1]<<8) + (buf)[0])
-
- #define ID1 0x1f
- #define ID2 0x8b