diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2013-04-04 14:16:21 +0800 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2013-05-04 22:18:06 -0500 |
commit | efb79f289f0a7e7fbfc82f78959093bf7d1558b9 (patch) | |
tree | 701e95a415f7524618784e605bbf59daacad296c /fs/cifs | |
parent | 0124cc45113f93b52c76589dc596a026917859bb (diff) |
CIFS: fix error return code in cifs_atomic_open()
Fix to return a negative error code from the error handling
case instead of 0, as returned elsewhere in this function.
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/dir.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c index 46e455ece573..5699b5036ed8 100644 --- a/fs/cifs/dir.c +++ b/fs/cifs/dir.c @@ -457,8 +457,10 @@ cifs_atomic_open(struct inode *inode, struct dentry *direntry, inode, direntry->d_name.name, direntry); tlink = cifs_sb_tlink(CIFS_SB(inode->i_sb)); - if (IS_ERR(tlink)) + if (IS_ERR(tlink)) { + rc = PTR_ERR(tlink); goto out_free_xid; + } tcon = tlink_tcon(tlink); server = tcon->ses->server; |