From bcbb21cdbb66e36fc4ef77559282aaf2242fe7b0 Mon Sep 17 00:00:00 2001 From: Arne Redlich Date: Tue, 18 Feb 2014 00:22:45 +0100 Subject: [PATCH] nfs_unlink_async: plug potential memory leak Spotted 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 b26472c..b2502ba 100644 --- a/lib/libnfs.c +++ b/lib/libnfs.c @@ -2447,6 +2447,7 @@ int nfs_unlink_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