check again

This commit is contained in:
2025-11-05 22:08:42 +01:00
parent 1c64695700
commit b129e638f7
2 changed files with 4 additions and 6 deletions

View File

@@ -175,11 +175,9 @@ void getwords(char *dictfile, int count) {
free(tossed);
for (i = 0; i < 66667; i++) {
if (verbose > 0) {
fprintf(stdout, "freeing word[%d]\n", i);
}
for (i = 0; i < 66667; i++)
if (words[i] != NULL)
free(words[i]);
}
free(words);
}

View File

@@ -96,7 +96,7 @@ char **fetch_dict(char *dictfile) {
pos = 11111;
next = 0;
for (i = 0; i < 6666; i++)
for (i = 0; i < 66667; i++)
words[i] = NULL;
LOOP: