inetmib1: Don't bother to free memory at process exit.

oldstable
Alexandre Julliard 2013-05-15 10:20:16 +02:00
parent 1731ee55b6
commit d6976d7e00
1 changed files with 1 additions and 2 deletions

View File

@ -1454,10 +1454,9 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
DisableThreadLibraryCalls(hinstDLL);
break;
case DLL_PROCESS_DETACH:
if (lpvReserved) break;
cleanup();
break;
default:
break;
}
return TRUE;