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

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

View File

@ -526,6 +526,7 @@ BOOL WINAPI DllMain(HINSTANCE hinst, DWORD fdwReason, LPVOID fImpLoad)
tlsIndex = TlsAlloc();
break;
case DLL_PROCESS_DETACH:
if (fImpLoad) break;
TlsFree(tlsIndex);
break;
}