From: Weston Andros Adamson Date: Thu, 6 Sep 2012 19:54:27 +0000 (-0400) Subject: NFS: return error from decode_getfh in decode open X-Git-Tag: v2.6.39-400.9.0~265 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=50005078ddc88a09abd6fe6611d5a5272fddc713;p=users%2Fjedix%2Flinux-maple.git NFS: return error from decode_getfh in decode open commit 01913b49cf1dc6409a07dd2a4cc6af2e77f3c410 upstream. If decode_getfh failed, nfs4_xdr_dec_open would return 0 since the last decode_* call must have succeeded. Signed-off-by: Weston Andros Adamson Signed-off-by: Trond Myklebust Signed-off-by: Greg Kroah-Hartman Signed-off-by: Guangyu Sun --- diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index 1cce3ac3a469..3b7fb28b44b5 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c @@ -5757,7 +5757,8 @@ static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr, status = decode_open(xdr, res); if (status) goto out; - if (decode_getfh(xdr, &res->fh) != 0) + status = decode_getfh(xdr, &res->fh); + if (status) goto out; if (decode_getfattr(xdr, res->f_attr, res->server) != 0) goto out;