diff options
| author | van Hauser <vh@thc.org> | 2021-08-12 18:55:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-12 18:55:40 +0200 |
| commit | b8fd0a1463fe5805d22f323777b65b7b2e2fcf46 (patch) | |
| tree | 119ab732665da26bf8e72f3c0f82147041df2087 /frida_mode/src/cmplog/cmplog.c | |
| parent | 20815d68502f288d3939a39b91f6de1e58220e18 (diff) | |
| parent | cacee58fb70e11fe463598077fe362ba76cd2101 (diff) | |
| download | afl++-b8fd0a1463fe5805d22f323777b65b7b2e2fcf46.tar.gz | |
Merge pull request #1065 from WorksButNotTested/fixes
Fixes
Diffstat (limited to 'frida_mode/src/cmplog/cmplog.c')
| -rw-r--r-- | frida_mode/src/cmplog/cmplog.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frida_mode/src/cmplog/cmplog.c b/frida_mode/src/cmplog/cmplog.c index a2609c8e..ae3116eb 100644 --- a/frida_mode/src/cmplog/cmplog.c +++ b/frida_mode/src/cmplog/cmplog.c @@ -56,7 +56,9 @@ void cmplog_config(void) { void cmplog_init(void) { - if (__afl_cmp_map != NULL) { OKF("CMPLOG mode enabled"); } + OKF("CMPLOG - Enabled [%c]", __afl_cmp_map == NULL ? ' ' : 'X'); + + if (__afl_cmp_map == NULL) { return; } cmplog_get_ranges(); |
