Fix unpoison

This commit is contained in:
Raúl Marín 2024-02-08 18:37:07 +01:00
parent 10c09b5817
commit d97c5496f5

View File

@ -28,7 +28,7 @@
# undef __msan_unpoison_string # undef __msan_unpoison_string
# include <sanitizer/msan_interface.h> # include <sanitizer/msan_interface.h>
# undef __msan_unpoison_overflow_15 # undef __msan_unpoison_overflow_15
# define __msan_unpoison_overflow_15(PTR, PTR_SIZE) __msan_unpoison(&(PTR)[(PTR_SIZE) - ((PTR_SIZE) % 16)], ((PTR_SIZE) % 16)) # define __msan_unpoison_overflow_15(PTR, PTR_SIZE) __msan_unpoison(&(PTR)[(PTR_SIZE) - ((PTR_SIZE) % 16)], 16)
# endif # endif
#endif #endif