Always lock call in find_call

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1037 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Mark Spencer 23 years ago
parent 26926ffcfa
commit bbdb142d2e

@ -1359,7 +1359,10 @@ static struct sip_pvt *find_call(struct sip_request *req, struct sockaddr_in *si
p = p->next;
}
ast_pthread_mutex_unlock(&iflock);
return sip_alloc(callid, sin, 1);
p = sip_alloc(callid, sin, 1);
if (p)
ast_pthread_mutex_lock(&p->lock);
return p;
}
static int sip_register(char *value, int lineno)

Loading…
Cancel
Save