mirror of
				https://github.com/webmproject/libwebp.git
				synced 2025-10-31 02:15:42 +01:00 
			
		
		
		
	dsp.h: fix ubsan macro name
copy and paste error in the previous commit, change
no_sanitize("unsigned-integer-overflow") from WEBP_UBSAN_IGNORE_UNDEF ->
WEBP_UBSAN_IGNORE_UNSIGNED_OVERFLOW
Change-Id: Id178ee14df1f2c4923a91ce423241e26b60b5d32
			
			
This commit is contained in:
		| @@ -120,8 +120,8 @@ extern "C" { | ||||
| // This macro prevents the undefined behavior sanitizer from reporting | ||||
| // failures related to unsigned integer overflows. This is only meant to | ||||
| // silence cases where this well defined behavior is expected. | ||||
| #undef WEBP_UBSAN_IGNORE_UNDEF | ||||
| #define WEBP_UBSAN_IGNORE_UNDEF \ | ||||
| #undef WEBP_UBSAN_IGNORE_UNSIGNED_OVERFLOW | ||||
| #define WEBP_UBSAN_IGNORE_UNSIGNED_OVERFLOW \ | ||||
|   __attribute__((no_sanitize("unsigned-integer-overflow"))) | ||||
| #endif | ||||
| #endif | ||||
|   | ||||
		Reference in New Issue
	
	Block a user