mirror of
https://github.com/reactos/reactos.git
synced 2025-06-01 15:38:37 +00:00
work around a bug in ReactOS (FindFirstFile isn't working with environment vars)
svn path=/trunk/; revision=35939
This commit is contained in:
parent
414cbcdc62
commit
7f1a28a669
1 changed files with 1 additions and 1 deletions
|
@ -2221,7 +2221,7 @@ ProcessUnattendInf(HINF hUnattendedInf)
|
|||
|
||||
|
||||
/* winetests */
|
||||
hFind = FindFirstFileA("%windir%\\bin\\*.exe", &ffd);
|
||||
hFind = FindFirstFileA("c:\\reactos\\bin\\*.exe", &ffd); /* %windir% isn't working on ros */
|
||||
if (hFind != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
do
|
||||
|
|
Loading…
Reference in a new issue