diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-03-20 13:44:10 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-03-20 13:44:10 -0500 |
commit | a162a6b804b48c605d1fd35e1861a5d32d00ad3f (patch) | |
tree | 50b6aa7f5da5e4c34da2f9d34b93c667c5d6c054 /fs/nfs/nfs4proc.c | |
parent | 967b9281361481aecf323563886ef972ee88c681 (diff) |
NFSv4: Kill braindead gcc warnings
nfs4_open_revalidate: 'res' may be used uninitialized
nfs4_callback_compound: ‘hdr_res.nops’ may be used uninitialized
'op_nr’ may be used uninitialized
encode_getattr_res: ‘savep’ may be used uninitialized
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4proc.c')
-rw-r--r-- | fs/nfs/nfs4proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 305bea201cd3..77a565eba562 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -908,7 +908,7 @@ out_put_state_owner: | |||
908 | static struct nfs4_state *nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred) | 908 | static struct nfs4_state *nfs4_open_delegated(struct inode *inode, int flags, struct rpc_cred *cred) |
909 | { | 909 | { |
910 | struct nfs4_exception exception = { }; | 910 | struct nfs4_exception exception = { }; |
911 | struct nfs4_state *res; | 911 | struct nfs4_state *res = ERR_PTR(-EIO); |
912 | int err; | 912 | int err; |
913 | 913 | ||
914 | do { | 914 | do { |