aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/cifs/connect.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
index 03f71fb40a8a..0ac595c8c262 100644
--- a/fs/cifs/connect.c
+++ b/fs/cifs/connect.c
@@ -3368,7 +3368,7 @@ cifs_ra_pages(struct cifs_sb_info *cifs_sb)
3368int 3368int
3369cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *volume_info) 3369cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *volume_info)
3370{ 3370{
3371 int rc = 0; 3371 int rc;
3372 int xid; 3372 int xid;
3373 struct cifs_ses *pSesInfo; 3373 struct cifs_ses *pSesInfo;
3374 struct cifs_tcon *tcon; 3374 struct cifs_tcon *tcon;
@@ -3395,6 +3395,7 @@ try_mount_again:
3395 FreeXid(xid); 3395 FreeXid(xid);
3396 } 3396 }
3397#endif 3397#endif
3398 rc = 0;
3398 tcon = NULL; 3399 tcon = NULL;
3399 pSesInfo = NULL; 3400 pSesInfo = NULL;
3400 srvTcp = NULL; 3401 srvTcp = NULL;