mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 20:28:08 +00:00
no cmplog when no taint is found
This commit is contained in:
@ -1855,8 +1855,11 @@ u8 input_to_state_stage(afl_state_t *afl, u8 *orig_buf, u8 *buf, u32 len) {
|
|||||||
// no taint? still try, create a dummy to prevent again colorization
|
// no taint? still try, create a dummy to prevent again colorization
|
||||||
if (!taint) {
|
if (!taint) {
|
||||||
|
|
||||||
taint = ck_alloc(sizeof(struct tainted));
|
#ifdef _DEBUG
|
||||||
taint->len = len;
|
fprintf(stderr, "TAINT FAILED\n");
|
||||||
|
#endif
|
||||||
|
afl->queue_cur->colorized = CMPLOG_LVL_MAX;
|
||||||
|
return 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user