diff options
author | vanhauser-thc <vh@thc.org> | 2024-08-19 16:25:32 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-08-19 16:25:32 +0200 |
commit | 1689a8e053c1f73e16331bfeda28c79e1ed4bbd0 (patch) | |
tree | 8e1dbb1b8454c470aa5e0093f6d89c5cc86e9200 /src/afl-common.c | |
parent | 6edc3b51ba81d577eeb4a64299916c1eaadfdd70 (diff) | |
download | afl++-1689a8e053c1f73e16331bfeda28c79e1ed4bbd0.tar.gz |
code format, llvm 18
Diffstat (limited to 'src/afl-common.c')
-rw-r--r-- | src/afl-common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/afl-common.c b/src/afl-common.c index e5584e93..892745a7 100644 --- a/src/afl-common.c +++ b/src/afl-common.c @@ -108,7 +108,8 @@ void set_sanitizer_defaults() { if (!have_san_options) { strcpy(buf, default_options); } if (have_asan_options) { - if (NULL != strstr(have_asan_options, "detect_leaks=0") || NULL != strstr(have_asan_options, "detect_leaks=false")) { + if (NULL != strstr(have_asan_options, "detect_leaks=0") || + NULL != strstr(have_asan_options, "detect_leaks=false")) { strcat(buf, "exitcode=" STRINGIFY(LSAN_ERROR) ":fast_unwind_on_malloc=0:print_suppressions=0:detect_leaks=0:malloc_context_size=0:"); |