From: Arne Redlich Date: Mon, 17 Feb 2014 23:20:59 +0000 (+0100) Subject: nfs_rmdir_async: fix potential memory leak X-Git-Tag: upstream/1.9.6^2~92 X-Git-Url: https://git.piment-noir.org/?p=deb_libnfs.git;a=commitdiff_plain;h=2257433dd4871b4d2323d92e5800931c6821b143 nfs_rmdir_async: fix potential memory leak Spotted by clang analyzer. Signed-off-by: Arne Redlich --- diff --git a/lib/libnfs.c b/lib/libnfs.c index 6f0a0ae..b26472c 100644 --- a/lib/libnfs.c +++ b/lib/libnfs.c @@ -2211,6 +2211,7 @@ int nfs_rmdir_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; }