nfs_unlink_async: plug potential memory leak
[deb_libnfs.git] / lib / libnfs.c
index b26472c0ee384ca55101667b318136fbf05931db..b2502ba8fa5ad2d066bc04deb301c7c492caa88b 100644 (file)
@@ -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;
        }