mlang: Don't bother to free thread local storage at process exit.

This commit is contained in:
Alexandre Julliard 2013-05-16 12:51:26 +02:00
parent a7d4b2711c
commit ed8a38d400
1 changed files with 1 additions and 0 deletions

View File

@ -888,6 +888,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
DisableThreadLibraryCalls(hInstDLL);
break;
case DLL_PROCESS_DETACH:
if (lpv) break;
TlsFree(MLANG_tls_index);
break;
}