smbd: Remove an unnecessary else branch
authorVolker Lendecke <vl@samba.org>
Wed, 12 Aug 2015 16:32:54 +0000 (18:32 +0200)
committerVolker Lendecke <vl@samba.org>
Thu, 20 Aug 2015 13:52:20 +0000 (15:52 +0200)
"goto out;" is sufficient before

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ira Cooper <ira@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Thu Aug 20 15:52:20 CEST 2015 on sn-devel-104

source3/smbd/dir.c

index c700cb7dd129e67bcf3f48fbb0248da09e1847a0..eebf9b1714f71dc3b71a7f683c237af0ed312821 100644 (file)
@@ -1465,9 +1465,8 @@ bool is_visible_file(connection_struct *conn, const char *dir_path,
                        if (SMB_VFS_STAT(conn, smb_fname_base) != 0) {
                                ret = true;
                                goto out;
-                       } else {
-                               *pst = smb_fname_base->st;
                        }
+                       *pst = smb_fname_base->st;
                }
 
                /* Honour _hide unreadable_ option */