diff options
author | vanhauser-thc <vh@thc.org> | 2021-02-07 07:51:29 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-02-07 07:51:29 +0100 |
commit | 0ad56167c53ae660d40ccc6cdedb39f0a52eefcd (patch) | |
tree | df45cbcd663a12cc96670cf8e72ba72f90fa37ef /src/afl-fuzz-init.c | |
parent | aeb7d7048371cd91ab9280c3958f1c35e5d5e758 (diff) | |
download | afl++-0ad56167c53ae660d40ccc6cdedb39f0a52eefcd.tar.gz |
fix scan-build issues
Diffstat (limited to 'src/afl-fuzz-init.c')
-rw-r--r-- | src/afl-fuzz-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c index 40ba20c7..702e732d 100644 --- a/src/afl-fuzz-init.c +++ b/src/afl-fuzz-init.c @@ -1242,7 +1242,7 @@ static void link_or_copy(u8 *old_path, u8 *new_path) { void pivot_inputs(afl_state_t *afl) { - struct queue_entry *q = afl->queue; + struct queue_entry *q; u32 id = 0, i; ACTF("Creating hard links for all input files..."); |