[fedfs-utils] [PATCH 6/8] nsdb: don't leak a read buffer upon certfile open failure

Jim Meyering jim at meyering.net
Wed Nov 30 12:51:36 PST 2011


From: Jim Meyering <meyering at redhat.com>

* src/libnsdb/nsdb.c (nsdb_read_certfile): Free "buf" also
on the failed-open path.
---
 src/libnsdb/nsdb.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/libnsdb/nsdb.c b/src/libnsdb/nsdb.c
index cab81b7..2ec13e2 100644
--- a/src/libnsdb/nsdb.c
+++ b/src/libnsdb/nsdb.c
@@ -494,6 +494,7 @@ nsdb_read_certfile(const char *pathname, char **certdata,
 	if (fd == -1) {
 		xlog(D_GENERAL, "%s: Failed to open %s: %m",
 			__func__, pathname);
+		free(buf);
 		goto out;
 	}

-- 
1.7.8.rc4




More information about the fedfs-utils-devel mailing list