fixed potential UAF with custom mutator havoc on realloc

This commit is contained in:
Michael Rodler 2021-07-15 11:03:20 +02:00
parent 3dd39fec90
commit cd683ed253

View File

@ -2057,7 +2057,7 @@ havoc_stage:
temp_len = new_len; temp_len = new_len;
if (out_buf != custom_havoc_buf) { if (out_buf != custom_havoc_buf) {
afl_realloc(AFL_BUF_PARAM(out), temp_len); out_buf = afl_realloc(AFL_BUF_PARAM(out), temp_len);
if (unlikely(!afl->out_buf)) { PFATAL("alloc"); } if (unlikely(!afl->out_buf)) { PFATAL("alloc"); }
memcpy(out_buf, custom_havoc_buf, temp_len); memcpy(out_buf, custom_havoc_buf, temp_len);