This commit is contained in:
vanhauser-thc 2021-04-30 10:33:00 +02:00
parent 765f3e5169
commit 070c9923e2
2 changed files with 3 additions and 2 deletions

View File

@ -20,7 +20,8 @@ guint64 util_read_address(char *key) {
if (!g_ascii_isxdigit(*c)) {
FATAL("Invalid address not formed of hex digits: %s ('%c')\n", value_str, *c);
FATAL("Invalid address not formed of hex digits: %s ('%c')\n", value_str,
*c);
}

View File

@ -70,7 +70,6 @@ static void __afl_map_shm(void) {
char *id_str = getenv(SHM_ENV_VAR);
char *ptr;
/* NOTE TODO BUG FIXME: if you want to supply a variable sized map then
uncomment the following: */
@ -81,6 +80,7 @@ static void __afl_map_shm(void) {
if (val > 0) __afl_map_size = val;
}
*/
if (__afl_map_size > MAP_SIZE) {