Skip to content
Snippets Groups Projects
Commit 86a8ef16 authored by vanhauser-thc's avatar vanhauser-thc
Browse files

fix custom trim for increasing data

parent b41ea92a
No related branches found
No related tags found
No related merge requests found
...@@ -397,8 +397,14 @@ u8 trim_case_custom(afl_state_t *afl, struct queue_entry *q, u8 *in_buf, ...@@ -397,8 +397,14 @@ u8 trim_case_custom(afl_state_t *afl, struct queue_entry *q, u8 *in_buf,
if (likely(retlen && cksum == q->exec_cksum)) { if (likely(retlen && cksum == q->exec_cksum)) {
q->len = retlen; if (afl_realloc((void **)&in_buf, retlen) == NULL) {
FATAL("can not allocate memory for trim");
}
memcpy(in_buf, retbuf, retlen); memcpy(in_buf, retbuf, retlen);
q->len = retlen;
/* Let's save a clean trace, which will be needed by /* Let's save a clean trace, which will be needed by
update_bitmap_score once we're done with the trimming stuff. */ update_bitmap_score once we're done with the trimming stuff. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment