aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2007-10-18 19:59:20 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2007-10-19 17:19:30 -0400
commit603c83da19cf42d0f94022ac2fa389a431e32b84 (patch)
tree7d1d62169ecdde00b7a83e9fab6480b29099b840 /fs
parentNFSv4: Ensure that we wait for the CLOSE request to complete (diff)
downloadlinux-dev-603c83da19cf42d0f94022ac2fa389a431e32b84.tar.xz
linux-dev-603c83da19cf42d0f94022ac2fa389a431e32b84.zip
NFSv4: Fix an rpc_cred reference leakage in fs/nfs/delegation.c
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfs/delegation.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/nfs/delegation.c b/fs/nfs/delegation.c
index af8b235d405d..11833f4caeaa 100644
--- a/fs/nfs/delegation.c
+++ b/fs/nfs/delegation.c
@@ -168,7 +168,8 @@ int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred, struct
spin_unlock(&inode->i_lock);
spin_unlock(&clp->cl_lock);
- kfree(delegation);
+ if (delegation != NULL)
+ nfs_free_delegation(delegation);
return status;
}