From 0bc300d64df60e8403204617b7bd4ccca0243c8f Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Wed, 20 Apr 2005 12:52:13 +0000 Subject: [PATCH] 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 --- reactos/lib/rpcrt4/rpcrt4_main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/reactos/lib/rpcrt4/rpcrt4_main.c b/reactos/lib/rpcrt4/rpcrt4_main.c index cdf54512aec..3f7da12d0c6 100644 --- a/reactos/lib/rpcrt4/rpcrt4_main.c +++ b/reactos/lib/rpcrt4/rpcrt4_main.c @@ -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: