diff options
Diffstat (limited to 'common/test_textfile.c')
| -rw-r--r-- | common/test_textfile.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/common/test_textfile.c b/common/test_textfile.c index 54202d2c..5a783d20 100644 --- a/common/test_textfile.c +++ b/common/test_textfile.c @@ -34,6 +34,7 @@  #include <errno.h>  #include <fcntl.h>  #include <unistd.h> +#include <stdlib.h>  #include <string.h>  #include "textfile.h" @@ -64,6 +65,8 @@ int main(int argc, char *argv[])  		str = textfile_get(filename, key);  		if (!str)  			fprintf(stderr, "No value for %s\n", key); +		else +			free(str);  	}  	return 0; | 
