nfs_fchown_async: fix use-after-free
authorArne Redlich <arne.redlich@googlemail.com>
Mon, 17 Feb 2014 22:51:48 +0000 (23:51 +0100)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 20 Feb 2014 02:54:37 +0000 (18:54 -0800)
Spotted by clang analyzer.

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

index b06402872a2cc6b5063b78d49dce466ac7a5886e..910e4d2cc5a1b054a22d4df4dcd9789324c96b6f 100644 (file)
@@ -3446,7 +3446,6 @@ int nfs_fchown_async(struct nfs_context *nfs, struct nfsfh *nfsfh, int uid, int
        memcpy(data->fh.data.data_val, nfsfh->fh.data.data_val, data->fh.data.data_len);
 
        if (nfs_chown_continue_internal(nfs, data) != 0) {
-               free_nfs_cb_data(data);
                return -1;
        }