mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
fix a bug in RtlDetermineDosPathNameType_U
fixes 5 kernel32 profile winetests svn path=/trunk/; revision=38893
This commit is contained in:
@@ -75,7 +75,7 @@ RtlDetermineDosPathNameType_U(PCWSTR Path)
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!Path[1] || Path[1] != L':') return RtlPathTypeRelative; /* xxx */
|
||||
if (!Path[0] || Path[1] != L':') return RtlPathTypeRelative; /* xxx */
|
||||
if (IS_PATH_SEPARATOR(Path[2])) return RtlPathTypeDriveAbsolute; /* x:\xxx */
|
||||
|
||||
return RtlPathTypeDriveRelative; /* x:xxx */
|
||||
|
||||
Reference in New Issue
Block a user