msi: Fix building the fusion filename.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=50809
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit 46424c6196
)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
parent
81f705ee5b
commit
60fcda90f4
|
@ -534,7 +534,7 @@ static LPWSTR get_fusion_filename(MSIPACKAGE *package)
|
|||
if (!(filename = msi_alloc(len * sizeof(WCHAR)))) return NULL;
|
||||
|
||||
lstrcpyW(filename, path);
|
||||
lstrcpyW(filename, L"\\");
|
||||
lstrcatW(filename, L"\\");
|
||||
lstrcatW(filename, L"fusion.dll");
|
||||
if (GetFileAttributesW(filename) != INVALID_FILE_ATTRIBUTES)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue