nfs_rmdir_async: fix potential memory leak
authorArne Redlich <arne.redlich@googlemail.com>
Mon, 17 Feb 2014 23:20:59 +0000 (00:20 +0100)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 20 Feb 2014 02:55:42 +0000 (18:55 -0800)
Spotted by clang analyzer.

Signed-off-by: Arne Redlich <arne.redlich@googlemail.com>
lib/libnfs.c

index 6f0a0ae86c4358027b20d6c98f2163b915097824..b26472c0ee384ca55101667b318136fbf05931db 100644 (file)
@@ -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;
        }