diff --git a/reactos/lib/rtl/path.c b/reactos/lib/rtl/path.c index 2b69c371264..4b23f14f29e 100644 --- a/reactos/lib/rtl/path.c +++ b/reactos/lib/rtl/path.c @@ -75,12 +75,7 @@ RtlDetermineDosPathNameType_U(PCWSTR Path) } else { - /* FIXME: the Wine version of this line reads: - * if (!Path[1] || Path[1] != L':') return RtlPathTypeRelative - * Should we do this too? - * -Gunnar - */ - if (Path[1] != L':') return RtlPathTypeRelative; /* xxx */ + if (!Path[1] || Path[1] != L':') return RtlPathTypeRelative; /* xxx */ if (IS_PATH_SEPARATOR(Path[2])) return RtlPathTypeDriveAbsolute; /* x:\xxx */ return RtlPathTypeDriveRelative; /* x:xxx */