Remove bogus error message. It is normal for Mutex creation to fail since the Object will alredy exist after the first time it's created

svn path=/trunk/; revision=14711
This commit is contained in:
Alex Ionescu 2005-04-20 12:52:13 +00:00
parent 27a6253e6c
commit 0bc300d64d

View file

@ -152,8 +152,6 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(hinstDLL);
master_mutex = CreateMutexA( NULL, FALSE, RPCSS_MASTER_MUTEX_NAME);
if (!master_mutex)
ERR("Failed to create master mutex\n");
break;
case DLL_PROCESS_DETACH: