diff options
author | van Hauser <vh@thc.org> | 2020-10-30 09:44:06 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-10-30 09:44:06 +0100 |
commit | e0bdfd87b62ea7f30d9ae7fa4a838004a3983f83 (patch) | |
tree | f96c2890afa979d7f1127f56f3a00f672c955d34 /src | |
parent | b33306ca2cb823e40769dda733542063dce0658f (diff) | |
download | afl++-e0bdfd87b62ea7f30d9ae7fa4a838004a3983f83.tar.gz |
fix ck_alloc call
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz-extras.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-extras.c b/src/afl-fuzz-extras.c index 5beceac9..adec986e 100644 --- a/src/afl-fuzz-extras.c +++ b/src/afl-fuzz-extras.c @@ -462,7 +462,7 @@ void add_extra(afl_state_t *afl, u8 *mem, u32 len) { } - if (afl->extra) { + if (afl->extras) { afl->extras = ck_realloc((void **)&afl->extras, (afl->extras_cnt + 1) * sizeof(struct extra_data)); |