kernel32: Fix last error code in GetVolumeInformationW when an explicit subdir is requested.
This commit is contained in:
parent
357b50600b
commit
1455604704
|
@ -435,7 +435,7 @@ static void test_GetVolumeInformationA(void)
|
|||
SetLastError(0xdeadbeef);
|
||||
ret = pGetVolumeInformationA(windowsdir, vol_name_buf, vol_name_size,
|
||||
&vol_serial_num, &max_comp_len, &fs_flags, fs_name_buf, fs_name_len);
|
||||
todo_wine ok(!ret && (GetLastError()==ERROR_DIR_NOT_ROOT ||
|
||||
ok(!ret && (GetLastError()==ERROR_DIR_NOT_ROOT ||
|
||||
broken(GetLastError()==ERROR_BAD_PATHNAME/* win9x */)),
|
||||
"GetVolumeInformationA did%s fail, root=%s, last error=%u\n", ret ? " not":"", windowsdir, GetLastError());
|
||||
/* A subdir with trailing \ yields DIR_NOT_ROOT instead of INVALID_NAME */
|
||||
|
|
|
@ -568,6 +568,12 @@ BOOL WINAPI GetVolumeInformationW( LPCWSTR root, LPWSTR label, DWORD label_len,
|
|||
p = memchrW( nt_name.Buffer + 4, '\\', (nt_name.Length - 4) / sizeof(WCHAR) );
|
||||
if (p != nt_name.Buffer + nt_name.Length / sizeof(WCHAR) - 1)
|
||||
{
|
||||
/* check if root contains an explicit subdir */
|
||||
if (root[0] && root[1] == ':') root += 2;
|
||||
while (*root == '\\') root++;
|
||||
if (strchrW( root, '\\' ))
|
||||
SetLastError( ERROR_DIR_NOT_ROOT );
|
||||
else
|
||||
SetLastError( ERROR_INVALID_NAME );
|
||||
goto done;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue