From b1a197f5b2bf091a95811b1db9560110509d40bb Mon Sep 17 00:00:00 2001 From: Arne Redlich Date: Tue, 18 Feb 2014 00:19:23 +0100 Subject: [PATCH] nfs_mkdir_async: fix potential memory leak Pointed out by clang analyzer Signed-off-by: Arne Redlich --- lib/libnfs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libnfs.c b/lib/libnfs.c index c660db3..6f0a0ae 100644 --- a/lib/libnfs.c +++ b/lib/libnfs.c @@ -2124,6 +2124,7 @@ int nfs_mkdir_async(struct nfs_context *nfs, const char *path, nfs_cb cb, void * ptr = strrchr(new_path, '/'); if (ptr == NULL) { + free(new_path); rpc_set_error(nfs->rpc, "Invalid path %s", path); return -1; } -- 2.34.1