From 79645739ff07715a03ede8547baffee9cc22e581 Mon Sep 17 00:00:00 2001 From: Alan Kennedy Date: Sun, 20 Jun 2004 07:54:31 +0000 Subject: [PATCH] Taken care of mem leaks --- src/statichuff/statichuff.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/statichuff/statichuff.c b/src/statichuff/statichuff.c index b1896e0..db164d2 100644 --- a/src/statichuff/statichuff.c +++ b/src/statichuff/statichuff.c @@ -255,6 +255,11 @@ int shuff_encode_file(char *inputfile, char *outputfile) /* Encodeo byte per byte */ shuff_encode_symbols(freqtable,codetable,inputfile,outputfile); + /* Free up memory baby yeah */ + free(freqtable); + free(inputlist); + free(codetable); + return 1; } @@ -316,6 +321,10 @@ int shuff_decode_file(char *inputfile, char *outputfile) fclose(fpsource); fclose(fpdest); + /* Free up memory baby yeah */ + free(ftable); + free(inputlist); + return 1; } -- 2.43.0