wineboot: Restart 64-bit version from the system32 directory.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51006
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2021-04-16 11:11:22 +02:00
parent ba713a8cf0
commit 59165212ca
1 changed files with 2 additions and 1 deletions

View File

@ -1624,7 +1624,8 @@ int __cdecl main( int argc, char *argv[] )
memset( &si, 0, sizeof(si) );
si.cb = sizeof(si);
GetModuleFileNameW( 0, filename, MAX_PATH );
GetSystemDirectoryW( filename, MAX_PATH );
wcscat( filename, L"\\wineboot.exe" );
Wow64DisableWow64FsRedirection( &redir );
if (CreateProcessW( filename, GetCommandLineW(), NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi ))