Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 01913b49 authored by Weston Andros Adamson's avatar Weston Andros Adamson Committed by Trond Myklebust
Browse files

NFS: return error from decode_getfh in decode open



If decode_getfh failed, nfs4_xdr_dec_open would return 0 since the last
decode_* call must have succeeded.

Cc: stable@vger.kernel.org
Signed-off-by: default avatarWeston Andros Adamson <dros@netapp.com>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 1f1ea6c2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -6225,7 +6225,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;
	decode_getfattr(xdr, res->f_attr, res->server);
out: