mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-11 09:41:35 +00:00
afl-cc: Add missing debug statement
For each path that is tried, there's a debug log printed, _except_ for this one. Fix it.
This commit is contained in:
parent
6b049536f1
commit
d84cc73d13
@ -464,6 +464,8 @@ u8 *find_object(aflcc_state_t *aflcc, u8 *obj) {
|
||||
*slash = 0;
|
||||
tmp = alloc_printf("%s/%s", exepath, obj);
|
||||
|
||||
if (aflcc->debug) DEBUGF("Trying %s\n", tmp);
|
||||
|
||||
if (!access(tmp, R_OK)) { return tmp; }
|
||||
|
||||
ck_free(tmp);
|
||||
|
Loading…
x
Reference in New Issue
Block a user