about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYour Name <you@example.com>2021-11-19 18:06:15 +0000
committerYour Name <you@example.com>2021-11-19 18:06:15 +0000
commitd61a4def5e73d7e552d929652a237bd124861c77 (patch)
tree83479f96ec462189288768f1c589e79d93239446
parent4a2d944df3a3c3f00f46dd1a2f62cb7d977b28a0 (diff)
downloadafl++-d61a4def5e73d7e552d929652a237bd124861c77.tar.gz
Minor ASAN fix (again)
-rw-r--r--frida_mode/src/asan/asan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frida_mode/src/asan/asan.c b/frida_mode/src/asan/asan.c
index f095fb46..884bec53 100644
--- a/frida_mode/src/asan/asan.c
+++ b/frida_mode/src/asan/asan.c
@@ -49,7 +49,7 @@ static gboolean asan_exclude_module(const GumModuleDetails *details,
 
 void asan_exclude_module_by_symbol(gchar *symbol_name) {
 
-  gum_process_enumerate_modules(asan_exclude_module, "__asan_loadN");
+  gum_process_enumerate_modules(asan_exclude_module, symbol_name);
 
 }