From 27d56b9bf9321146467d133be584cb6d7e55b099 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Wed, 5 Nov 2025 21:58:15 +0100 Subject: [PATCH] fix malloc size --- dictfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictfile.c b/dictfile.c index 97c12e5..eb572f0 100644 --- a/dictfile.c +++ b/dictfile.c @@ -83,7 +83,7 @@ char **fetch_dict(char *dictfile) { exit(1); } - words = malloc(66666 * sizeof(char *)); + words = malloc(66667 * sizeof(char *)); digits = malloc(5 * sizeof(int)); jump = rand_lim(32);