mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-12 18:18:07 +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:
@ -464,6 +464,8 @@ u8 *find_object(aflcc_state_t *aflcc, u8 *obj) {
|
|||||||
*slash = 0;
|
*slash = 0;
|
||||||
tmp = alloc_printf("%s/%s", exepath, obj);
|
tmp = alloc_printf("%s/%s", exepath, obj);
|
||||||
|
|
||||||
|
if (aflcc->debug) DEBUGF("Trying %s\n", tmp);
|
||||||
|
|
||||||
if (!access(tmp, R_OK)) { return tmp; }
|
if (!access(tmp, R_OK)) { return tmp; }
|
||||||
|
|
||||||
ck_free(tmp);
|
ck_free(tmp);
|
||||||
|
Reference in New Issue
Block a user