Author: cwittich
Date: Sun Jan 18 08:51:29 2009
New Revision: 38893
URL:
http://svn.reactos.org/svn/reactos?rev=38893&view=rev
Log:
fix a bug in RtlDetermineDosPathNameType_U
fixes 5 kernel32 profile winetests
Modified:
trunk/reactos/lib/rtl/path.c
Modified: trunk/reactos/lib/rtl/path.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/rtl/path.c?rev=38893&a…
==============================================================================
--- trunk/reactos/lib/rtl/path.c [iso-8859-1] (original)
+++ trunk/reactos/lib/rtl/path.c [iso-8859-1] Sun Jan 18 08:51:29 2009
@@ -75,7 +75,7 @@
}
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 */