fix free len

This commit is contained in:
2025-11-05 22:01:43 +01:00
parent 40200bb035
commit 24a08023ed

View File

@@ -175,7 +175,7 @@ void getwords(char *dictfile, int count) {
free(tossed); free(tossed);
for (i = 0; i < 66666; i++) for (i = 0; i < 66667; i++)
if (words[i] != NULL) if (words[i] != NULL)
free(words[i]); free(words[i]);
} }