diff options
author | Your Name <you@example.com> | 2021-11-19 18:06:15 +0000 |
---|---|---|
committer | Your Name <you@example.com> | 2021-11-19 18:06:15 +0000 |
commit | d61a4def5e73d7e552d929652a237bd124861c77 (patch) | |
tree | 83479f96ec462189288768f1c589e79d93239446 | |
parent | 4a2d944df3a3c3f00f46dd1a2f62cb7d977b28a0 (diff) | |
download | afl++-d61a4def5e73d7e552d929652a237bd124861c77.tar.gz |
Minor ASAN fix (again)
-rw-r--r-- | frida_mode/src/asan/asan.c | 2 |
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); } |