diff --git a/Alc/ALc.c b/Alc/ALc.c index 6ce6feaa..627cc8c8 100644 --- a/Alc/ALc.c +++ b/Alc/ALc.c @@ -2171,12 +2171,7 @@ ALC_API ALCcontext* ALC_APIENTRY alcGetCurrentContext(ALCvoid) ALCcontext *Context; Context = pthread_getspecific(LocalContext); - if(!Context) - { - LockLists(); - Context = GlobalContext; - UnlockLists(); - } + if(!Context) Context = GlobalContext; return Context; }