mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user