about summary refs log tree commit diff
path: root/src/afl-fuzz-init.c
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-03-21 20:28:01 +0100
committerDominik Maier <domenukk@gmail.com>2020-03-21 20:28:01 +0100
commit6f78b67f033f430b2b71f88b9f596847d7cbedb1 (patch)
tree00ba11566f62dfe5cb74d6c14999517cf3da7dcd /src/afl-fuzz-init.c
parenta5af81506f639bf6f979f2afb22e9849004f23b3 (diff)
downloadafl++-6f78b67f033f430b2b71f88b9f596847d7cbedb1.tar.gz
adjusted int_bufs
Diffstat (limited to 'src/afl-fuzz-init.c')
-rw-r--r--src/afl-fuzz-init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c
index e12b1e07..c3f3fac0 100644
--- a/src/afl-fuzz-init.c
+++ b/src/afl-fuzz-init.c
@@ -323,7 +323,7 @@ void read_testcases(afl_state_t *afl) {
   u32             i;
   u8 *            fn1;
 
-  u8 int_buf[12][16];
+  u8 int_buf[2][16];
 
   /* Auto-detect non-in-place resumption attempts. */
 
@@ -556,7 +556,7 @@ void perform_dry_run(afl_state_t *afl) {
 
         if (afl->fsrv.mem_limit) {
 
-          u8 int_tmp[16];
+          u8 int_buf[16];
 
           SAYF("\n" cLRD "[-] " cRST
                "Oops, the program crashed with one of the test cases provided. "
@@ -598,7 +598,7 @@ void perform_dry_run(afl_state_t *afl) {
                "other options\n"
                "      fail, poke <afl-users@googlegroups.com> for "
                "troubleshooting tips.\n",
-               DMS(int_tmp, sizeof(int_tmp), afl->fsrv.mem_limit << 20),
+               DMS(int_buf, sizeof(int_buf), afl->fsrv.mem_limit << 20),
                afl->fsrv.mem_limit - 1, doc_path);
 
         } else {