Commit 1e2b060e authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Pass correct pointer to build_module().

parent 0f972e22
...@@ -2325,7 +2325,7 @@ static NTSTATUS load_so_dll( LPCWSTR load_path, const UNICODE_STRING *nt_name, ...@@ -2325,7 +2325,7 @@ static NTSTATUS load_so_dll( LPCWSTR load_path, const UNICODE_STRING *nt_name,
SECTION_IMAGE_INFORMATION image_info = { 0 }; SECTION_IMAGE_INFORMATION image_info = { 0 };
image_info.u.s.WineBuiltin = 1; 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 ); if (module) unix_funcs->unload_builtin_dll( module );
return status; return status;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment