Marcus Meissner
e9a0caf766
VERY IMPORTANT PATCH FOR 6.3 I have added this patch, which fixes a serious bug in wine version 6.3. According to: https://bugs.winehq.org/attachment.cgi?id=69488&action=diff The bug does not allow to load absolutely any kind of audio server for the vst bridge. It probably involves other version inusabilities OBS-URL: https://build.opensuse.org/request/show/875832 OBS-URL: https://build.opensuse.org/package/show/Emulators/wine?expand=0&rev=799
14 lines
656 B
Diff
14 lines
656 B
Diff
diff --git a/dlls/ntdll/loader.c b/dlls/ntdll/loader.c
|
|
index 644eee1e9d7c..c21c62c10b0d 100644
|
|
--- a/dlls/ntdll/loader.c
|
|
+++ b/dlls/ntdll/loader.c
|
|
@@ -2325,7 +2325,7 @@ static NTSTATUS load_so_dll( LPCWSTR load_path, const UNICODE_STRING *nt_name,
|
|
SECTION_IMAGE_INFORMATION image_info = { 0 };
|
|
|
|
image_info.u.s.WineBuiltin = 1;
|
|
- if ((status = build_module( load_path, &win_name, &module, &image_info, NULL, flags, pwm )))
|
|
+ if ((status = build_module( load_path, &win_name, &module, &image_info, NULL, flags, &wm )))
|
|
{
|
|
if (module) unix_funcs->unload_builtin_dll( module );
|
|
return status;
|