From 6ac9aa0a523bb81b0dc928d68eec7bc407829340 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 15 May 2013 10:30:04 +0200 Subject: [PATCH] vbscript: Don't bother to free memory at process exit. --- dlls/vbscript/vbscript_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/vbscript/vbscript_main.c b/dlls/vbscript/vbscript_main.c index 1a4c5976bde..a79a1a06b54 100644 --- a/dlls/vbscript/vbscript_main.c +++ b/dlls/vbscript/vbscript_main.c @@ -332,6 +332,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv) vbscript_hinstance = hInstDLL; break; case DLL_PROCESS_DETACH: + if (lpv) break; release_typelib(); release_regexp_typelib(); } -- 2.11.4.GIT