diff options
author | Christian Holler (:decoder) <choller@mozilla.com> | 2024-03-06 10:50:29 +0100 |
---|---|---|
committer | Christian Holler (:decoder) <choller@mozilla.com> | 2024-03-06 10:50:29 +0100 |
commit | bf179533531a1c557e33fc38dd170c43abfbc45a (patch) | |
tree | 53efc4eb246c494034130bee25f276939ae146bf | |
parent | e46fac6063f7b0b6eca8e140b10c3a107deb0a0f (diff) | |
download | afl++-bf179533531a1c557e33fc38dd170c43abfbc45a.tar.gz |
Code formating
-rw-r--r-- | instrumentation/afl-compiler-rt.o.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/instrumentation/afl-compiler-rt.o.c b/instrumentation/afl-compiler-rt.o.c index 3e6348e9..e450dc45 100644 --- a/instrumentation/afl-compiler-rt.o.c +++ b/instrumentation/afl-compiler-rt.o.c @@ -1644,7 +1644,8 @@ void __sanitizer_cov_pcs_init(const uintptr_t *pcs_beg, } - if (__afl_filter_pcs && !mod_info->next && strstr(mod_info->name, __afl_filter_pcs_module)) { + if (__afl_filter_pcs && !mod_info->next && + strstr(mod_info->name, __afl_filter_pcs_module)) { u32 result_index; if (locate_in_pcs(PC, &result_index)) { @@ -1669,11 +1670,7 @@ void __sanitizer_cov_pcs_init(const uintptr_t *pcs_beg, } - if (__afl_pcmap_ptr) { - - mod_info->mapped = 1; - - } + if (__afl_pcmap_ptr) { mod_info->mapped = 1; } if (__afl_debug) { |