[FUSION_WINETEST] Sync with Wine Staging 4.18. CORE-16441

This commit is contained in:
Amine Khaldi 2019-10-26 22:56:35 +01:00
parent 88179a5d0f
commit 7046ddd63c

View file

@ -242,10 +242,10 @@ static void enum_gac_assembly_dirs(struct list *assemblies, const char *parent,
*end = 0; *end = 0;
/* Directories with no dll or exe will not be enumerated */ /* Directories with no dll or exe will not be enumerated */
snprintf(end, path + MAX_PATH - end, "%s\\%s.dll", ffd.cFileName, parent); sprintf(end, "%s\\%s.dll", ffd.cFileName, parent);
if (GetFileAttributesA(path) == INVALID_FILE_ATTRIBUTES) if (GetFileAttributesA(path) == INVALID_FILE_ATTRIBUTES)
{ {
snprintf(end, path + MAX_PATH - end, "%s\\%s.exe", ffd.cFileName, parent); sprintf(end, "%s\\%s.exe", ffd.cFileName, parent);
if (GetFileAttributesA(path) == INVALID_FILE_ATTRIBUTES) continue; if (GetFileAttributesA(path) == INVALID_FILE_ATTRIBUTES) continue;
} }