mirror of
https://github.com/reactos/reactos.git
synced 2025-06-06 01:40:36 +00:00
[USETUP] Disable install path test that may tests
This commit is contained in:
parent
1b323ff2f4
commit
4038773f45
1 changed files with 4 additions and 4 deletions
|
@ -142,12 +142,12 @@ IsValidPath(
|
||||||
// TODO: Add check for 8.3 too.
|
// TODO: Add check for 8.3 too.
|
||||||
|
|
||||||
/* Path must be at least 2 characters long */
|
/* Path must be at least 2 characters long */
|
||||||
if (Length < 2)
|
// if (Length < 2)
|
||||||
return FALSE;
|
// return FALSE;
|
||||||
|
|
||||||
/* Path must start with a backslash */
|
/* Path must start with a backslash */
|
||||||
if (InstallDir[0] != L'\\')
|
// if (InstallDir[0] != L'\\')
|
||||||
return FALSE;
|
// return FALSE;
|
||||||
|
|
||||||
/* Path must not end with a backslash */
|
/* Path must not end with a backslash */
|
||||||
if (InstallDir[Length - 1] == L'\\')
|
if (InstallDir[Length - 1] == L'\\')
|
||||||
|
|
Loading…
Reference in a new issue