[PATCH] ntdll: Fix a memory leak (Valgrind).

Sven Baars sbaars at codeweavers.com
Sun Oct 4 11:10:24 CDT 2020


Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49904
Signed-off-by: Sven Baars <sbaars at codeweavers.com>
---
 dlls/ntdll/unix/loader.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dlls/ntdll/unix/loader.c b/dlls/ntdll/unix/loader.c
index f12cc518996..c2b6ea603e3 100644
--- a/dlls/ntdll/unix/loader.c
+++ b/dlls/ntdll/unix/loader.c
@@ -920,7 +920,9 @@ static void load_libwine(void)
     if (build_dir) path = build_path( build_dir, "libs/wine/" LIBWINE );
     else path = build_path( dll_dir, "../" LIBWINE );
 
-    if (!(handle = dlopen( path, RTLD_NOW )) && !(handle = dlopen( LIBWINE, RTLD_NOW ))) return;
+    handle = dlopen( path, RTLD_NOW );
+    free( path );
+    if (!handle && !(handle = dlopen( LIBWINE, RTLD_NOW ))) return;
 
     p_wine_dll_set_callback = dlsym( handle, "wine_dll_set_callback" );
     p___wine_main_argc      = dlsym( handle, "__wine_main_argc" );
-- 
2.25.1




More information about the wine-devel mailing list