]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/threadengines/threadengine_pthread.cpp
Initialise SSL session pointer to NULL to prevent a potentially unsafe comparison...
[user/henk/code/inspircd.git] / src / threadengines / threadengine_pthread.cpp
index a1993af4548643df4e2a45b71bce11457c998564..66898bf2524387c1138c23e9463529fbbaba4d95 100644 (file)
@@ -105,11 +105,11 @@ void PThreadEngine::FreeThread(Thread* thread)
        }
 }
 
-MutexEngine::MutexEngine(InspIRCd* Instance) : ServerInstance(Instance)
+MutexFactory::MutexFactory(InspIRCd* Instance) : ServerInstance(Instance)
 {
 }
 
-Mutex* MutexEngine::CreateMutex()
+Mutex* MutexFactory::CreateMutex()
 {
        return new PosixMutex(this->ServerInstance);
 }