Compare commits

...

1 Commits

Author SHA1 Message Date
xumingjie.enna1
f168876287 [hwasan] Fix suppression of leaks from dlsym
Header "lsan/lsan_common.h" is not included, CAN_SANITIZE_LEAKS macro is
expanded to 0, so suppression of leaks from dlsym doesn't take effect.
2025-08-18 16:05:08 +08:00

View File

@ -14,6 +14,7 @@
#include "hwasan.h"
#include "interception/interception.h"
#include "lsan/lsan_common.h"
#include "sanitizer_common/sanitizer_allocator_dlsym.h"
#include "sanitizer_common/sanitizer_allocator_interface.h"
#include "sanitizer_common/sanitizer_mallinfo.h"