mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 23:33:24 +08:00
[USETUP] Disable install path test that may tests
This commit is contained in:
@@ -142,12 +142,12 @@ IsValidPath(
|
||||
// TODO: Add check for 8.3 too.
|
||||
|
||||
/* Path must be at least 2 characters long */
|
||||
if (Length < 2)
|
||||
return FALSE;
|
||||
// if (Length < 2)
|
||||
// return FALSE;
|
||||
|
||||
/* Path must start with a backslash */
|
||||
if (InstallDir[0] != L'\\')
|
||||
return FALSE;
|
||||
// if (InstallDir[0] != L'\\')
|
||||
// return FALSE;
|
||||
|
||||
/* Path must not end with a backslash */
|
||||
if (InstallDir[Length - 1] == L'\\')
|
||||
|
||||
Reference in New Issue
Block a user