diff options
author | van Hauser <vh@thc.org> | 2020-08-11 11:16:48 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-08-11 11:16:48 +0200 |
commit | 4f695b6f4c3ced165703363904e42492fca82112 (patch) | |
tree | 9de194f90da699d1d99cb2debae7f22989a7d616 /src/afl-common.c | |
parent | 3ec1b2374336d0b98aa4fc586cd5bc601b711821 (diff) | |
download | afl++-4f695b6f4c3ced165703363904e42492fca82112.tar.gz |
fixes
Diffstat (limited to 'src/afl-common.c')
-rw-r--r-- | src/afl-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-common.c b/src/afl-common.c index c1302080..cefed8dc 100644 --- a/src/afl-common.c +++ b/src/afl-common.c @@ -471,8 +471,8 @@ void read_bitmap(u8 *fname, u8 *map, size_t len) { u64 get_cur_time(void) { - static struct timeval tv; - static struct timezone tz; + struct timeval tv; + struct timezone tz; gettimeofday(&tv, &tz); |