about summary refs log tree commit diff
path: root/src/afl-common.c
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-08-11 11:16:48 +0200
committervan Hauser <vh@thc.org>2020-08-11 11:16:48 +0200
commit4f695b6f4c3ced165703363904e42492fca82112 (patch)
tree9de194f90da699d1d99cb2debae7f22989a7d616 /src/afl-common.c
parent3ec1b2374336d0b98aa4fc586cd5bc601b711821 (diff)
downloadafl++-4f695b6f4c3ced165703363904e42492fca82112.tar.gz
fixes
Diffstat (limited to 'src/afl-common.c')
-rw-r--r--src/afl-common.c4
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);