diff options
author | van Hauser <vh@thc.org> | 2020-10-30 09:40:51 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-10-30 09:40:51 +0100 |
commit | a2739ef5ff2cbb16d23d3d9c0ee1b13b892c1f72 (patch) | |
tree | 5c54994d8ec8f4b31b55977e54dedd55b18c185a /src/afl-fuzz-extras.c | |
parent | bdadba60f796e86ede9c545bf03c972c8d3343f4 (diff) | |
download | afl++-a2739ef5ff2cbb16d23d3d9c0ee1b13b892c1f72.tar.gz |
extras: afl_realloc -> ck_realloc
Diffstat (limited to 'src/afl-fuzz-extras.c')
-rw-r--r-- | src/afl-fuzz-extras.c | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/afl-fuzz-extras.c b/src/afl-fuzz-extras.c index 88a4fe67..4fb48860 100644 --- a/src/afl-fuzz-extras.c +++ b/src/afl-fuzz-extras.c @@ -423,8 +423,8 @@ void dedup_extras(afl_state_t *afl) { } if (afl->extras_cnt != orig_cnt) - afl->extras = afl_realloc((void **)&afl->extras, - afl->extras_cnt * sizeof(struct extra_data)); + afl->extras = ck_realloc((void **)&afl->extras, + afl->extras_cnt * sizeof(struct extra_data)); } @@ -462,8 +462,18 @@ void add_extra(afl_state_t *afl, u8 *mem, u32 len) { } - afl->extras = afl_realloc((void **)&afl->extras, - (afl->extras_cnt + 1) * sizeof(struct extra_data)); + if (afl->extra) { + + afl->extras = ck_realloc((void **)&afl->extras, + (afl->extras_cnt + 1) * sizeof(struct extra_data)); + + } else { + + afl->extras = ck_alloc((void **)&afl->extras, + (afl->extras_cnt + 1) * sizeof(struct extra_data)); + + } + if (unlikely(!afl->extras)) { PFATAL("alloc"); } afl->extras[afl->extras_cnt].data = ck_alloc(len); |