afl-fuzz-one.c: minor update

This commit is contained in:
h1994st
2020-03-30 06:01:01 -04:00
committed by Dominik Maier
parent ea95453975
commit e910c224da

View File

@ -1647,10 +1647,10 @@ custom_mutator_stage:
}
/* `afl->out_buf` is actually not changed in the loop. Since `ck_maybe_grow`
is cheap, we still keep the following line but remove `memcpy`. */
out_buf = ck_maybe_grow(BUF_PARAMS(out), len);
// ??? (h1994st): this line may be not necessary, as we do not modify the
// content of "out_buf".
memcpy(out_buf, in_buf, len);
// memcpy(out_buf, in_buf, len);
}