mirror of
https://github.com/3proxy/3proxy.git
synced 2025-02-23 10:35:40 +08:00
Deadlock in SSLPlugin corrected
deadlock due to typo in previous SSL patch
This commit is contained in:
parent
bc725189e3
commit
d4f4e4a807
@ -60,7 +60,7 @@ static struct SSLqueue *searchSSL(SOCKET s){
|
||||
pthread_mutex_lock(&ssl_mutex);
|
||||
for(sslq = SSLq; sslq; sslq = sslq->next)
|
||||
if(sslq->s == s) break;
|
||||
pthread_mutex_lock(&ssl_mutex);
|
||||
pthread_mutex_unlock(&ssl_mutex);
|
||||
return sslq;
|
||||
}
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
#define VERSION "3proxy-0.8b-devel"
|
||||
#define BUILDDATE "150504180421"
|
||||
#define BUILDDATE "150504181054"
|
||||
|
Loading…
Reference in New Issue
Block a user