work around a bug in ReactOS (FindFirstFile isn't working with environment vars)

svn path=/trunk/; revision=35939
This commit is contained in:
Christoph von Wittich 2008-09-04 15:28:40 +00:00
parent 414cbcdc62
commit 7f1a28a669

View file

@ -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