diff options
Diffstat (limited to 'external/neon/ubsan.patch')
-rw-r--r-- | external/neon/ubsan.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/external/neon/ubsan.patch b/external/neon/ubsan.patch new file mode 100644 index 000000000..56445fcb7 --- /dev/null +++ b/external/neon/ubsan.patch @@ -0,0 +1,11 @@ +--- 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 |