mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
msi: Only check the file signature if the candidate file is not a directory.
This commit is contained in:
parent
1fb22654e4
commit
0ed516908b
@ -760,18 +760,17 @@ static UINT ACTION_RecurseSearchDirectory(MSIPACKAGE *package, LPWSTR *appValue,
|
|||||||
hFind = FindFirstFileW(buf, &findData);
|
hFind = FindFirstFileW(buf, &findData);
|
||||||
if (hFind != INVALID_HANDLE_VALUE)
|
if (hFind != INVALID_HANDLE_VALUE)
|
||||||
{
|
{
|
||||||
BOOL matches;
|
if (!(findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))
|
||||||
|
|
||||||
/* assuming Signature can't contain wildcards for the file name,
|
|
||||||
* so don't bother with FindNextFileW here.
|
|
||||||
*/
|
|
||||||
rc = ACTION_FileMatchesSig(sig, &findData, buf, &matches);
|
|
||||||
if (rc == ERROR_SUCCESS && matches)
|
|
||||||
{
|
{
|
||||||
TRACE("found file, returning %s\n", debugstr_w(buf));
|
BOOL matches;
|
||||||
*appValue = buf;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
rc = ACTION_FileMatchesSig(sig, &findData, buf, &matches);
|
||||||
|
if (rc == ERROR_SUCCESS && matches)
|
||||||
|
{
|
||||||
|
TRACE("found file, returning %s\n", debugstr_w(buf));
|
||||||
|
*appValue = buf;
|
||||||
|
}
|
||||||
|
}
|
||||||
FindClose(hFind);
|
FindClose(hFind);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7163,10 +7163,7 @@ static void test_appsearch_drlocator(void)
|
|||||||
size = MAX_PATH;
|
size = MAX_PATH;
|
||||||
r = MsiGetPropertyA(hpkg, "SIGPROP6", prop, &size);
|
r = MsiGetPropertyA(hpkg, "SIGPROP6", prop, &size);
|
||||||
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
|
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
|
||||||
todo_wine
|
ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
|
||||||
{
|
|
||||||
ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
|
|
||||||
}
|
|
||||||
|
|
||||||
size = MAX_PATH;
|
size = MAX_PATH;
|
||||||
sprintf(path, "%s\\one\\two\\three\\FileName2", CURR_DIR);
|
sprintf(path, "%s\\one\\two\\three\\FileName2", CURR_DIR);
|
||||||
|
Loading…
Reference in New Issue
Block a user