fix malloc size

This commit is contained in:
2025-11-05 21:58:15 +01:00
parent 1f09d65b99
commit 27d56b9bf9

View File

@@ -83,7 +83,7 @@ char **fetch_dict(char *dictfile) {
exit(1); exit(1);
} }
words = malloc(66666 * sizeof(char *)); words = malloc(66667 * sizeof(char *));
digits = malloc(5 * sizeof(int)); digits = malloc(5 * sizeof(int));
jump = rand_lim(32); jump = rand_lim(32);