shithub: fuzz

Download patch

ref: 369b1c15ba474167e19ebaf3e01e44efe24ebc42
parent: 4f5742d10480c958c16b36686810c9b9130db9e0
author: Anthony House <tuffant21@aim.com>
date: Sat Nov 24 10:09:38 EST 2018

trying to find the bug

--- a/mutate.c
+++ b/mutate.c
@@ -91,10 +91,10 @@
 //    }
 //    else
 //    {
-dolog("mut_int \'before\' round %d, value: %d\n", *round, *in_val);
+dolog("mut_long \'before\' round %d, value: %d\n", *round, *in_val);
         (*in_val) << (rand() % (4 + 1 - 0) + 0);
         (*in_val) |= (rand() % (15 + 1 - 0) + 0);
-dolog("mut_int \'after\' round %d, value: %d\n", *round, *in_val);
+dolog("mut_long \'after\' round %d, value: %d\n", *round, *in_val);
 //    }
 }