asan: skip jenkins in older compilers, too
authorMichael Wallner <mike@php.net>
Tue, 29 Sep 2020 12:00:20 +0000 (14:00 +0200)
committerMichael Wallner <mike@php.net>
Tue, 29 Sep 2020 12:00:20 +0000 (14:00 +0200)
src/libhashkit/jenkins.cc

index 9636f3e9084fb5677fe6c390c9a0c523ac47af50..d66c64133d71e165b3835184dc169d1e8df362b9 100644 (file)
@@ -94,7 +94,7 @@ In which case, the hash table should have hashsize(10) elements.
 */
 
 #if HAVE_ASAN
-__attribute__((no_sanitize("address")))
+__attribute__((no_sanitize_address,no_sanitize("address")))
 #endif
 uint32_t hashkit_jenkins(const char *key, size_t length, void *)
 {