From 2e4fb93e33b92e5546c6d17a53743ac3cfb7e86b Mon Sep 17 00:00:00 2001 From: rafa_99 Date: Sun, 22 Nov 2020 14:41:29 +0000 Subject: Fixed Some Memory Leaks --- utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils.c') diff --git a/utils.c b/utils.c index 4a2b4ce..54800bc 100644 --- a/utils.c +++ b/utils.c @@ -15,9 +15,10 @@ int lineCounter(FILE *dictionary) if ( dictionary != NULL ) { char line[MAX_LINE]; - for( words; (!feof(dictionary)); words++ ) + for( int i = words; (!feof(dictionary)); i++ ) { fgets(line, MAX_LINE, dictionary); + words = i; } rewind(dictionary); words--; @@ -41,6 +42,5 @@ char* getLine(FILE *dictionary, int lineNumber) int getRandomNumber(int min, int max) { - srand(time(0)); return ((rand() % (max - min + 1)) + 1); } -- cgit v1.2.3