diff options
author | van Hauser <vh@thc.org> | 2020-08-10 13:59:30 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-08-10 13:59:30 +0200 |
commit | 3ecafde29deac10bb41c6c9b7370f7cef951ef11 (patch) | |
tree | 9bc9ca8a360c9023f33cb5fe8a0c2fedb2d3ea9d /src/afl-common.c | |
parent | 8428b18d2a48cf7e995797a8b2183920aaa14f7e (diff) | |
download | afl++-3ecafde29deac10bb41c6c9b7370f7cef951ef11.tar.gz |
increase stack size
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 e01bde3c..dabeeedd 100644 --- a/src/afl-common.c +++ b/src/afl-common.c @@ -467,8 +467,8 @@ void read_bitmap(u8 *fname, u8 *map, size_t len) { u64 get_cur_time(void) { - struct timeval tv; - struct timezone tz; + static struct timeval tv; + static struct timezone tz; gettimeofday(&tv, &tz); |