From 50d400b1de38cbf75a2004a53e412dc6343d82bb Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Wed, 13 Sep 2006 14:58:58 +0000 Subject: Fix some memory leaks in textfile.c --- common/textfile.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'common/textfile.c') diff --git a/common/textfile.c b/common/textfile.c index d76398c4..8c46563c 100644 --- a/common/textfile.c +++ b/common/textfile.c @@ -219,6 +219,7 @@ static int write_key(const char *pathname, const char *key, const char *value, i munmap(map, size); if (ftruncate(fd, base) < 0) { err = errno; + free(str); goto unlock; } pos = lseek(fd, base, SEEK_SET); @@ -384,6 +385,7 @@ int textfile_foreach(const char *pathname, end = strpbrk(off, "\r\n"); if (!end) { err = EILSEQ; + free(key); break; } @@ -392,6 +394,7 @@ int textfile_foreach(const char *pathname, value = malloc(len + 1); if (!value) { err = errno; + free(key); break; } -- cgit