ntdll: Also try to stat() the drive root.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46863
Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit 071e729969)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
oldstable
Thomas J. Moore 2019-04-04 10:59:09 -05:00 committed by Michael Stefaniuc
parent bbb4f68684
commit 2fae324cc4
1 changed files with 1 additions and 1 deletions

View File

@ -2646,7 +2646,7 @@ static NTSTATUS lookup_unix_name( const WCHAR *name, int name_len, char **buffer
char *p;
unix_name[pos + ret] = 0;
for (p = unix_name + pos ; *p; p++) if (*p == '\\') *p = '/';
if (!redirect || (!strstr( unix_name, "/windows/") && strncmp( unix_name, "windows/", 8 )))
if (!name_len || !redirect || (!strstr( unix_name, "/windows/") && strncmp( unix_name, "windows/", 8 )))
{
if (!stat( unix_name, &st ))
{