where did the read lock go in del_member

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3567 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2006-12-07 18:16:29 +00:00
parent 6fb36fcb2c
commit efd277768f
1 changed files with 5 additions and 0 deletions

View File

@ -473,6 +473,11 @@ static void conference_del_member(conference_obj_t *conference, conference_membe
conference_member_t *imember, *last = NULL;
switch_event_t *event;
if (switch_thread_rwlock_tryrdlock(conference->rwlock) != SWITCH_STATUS_SUCCESS) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Read Lock Fail\n");
return;
}
switch_mutex_lock(conference->mutex);
switch_mutex_lock(conference->member_mutex);
switch_mutex_lock(member->audio_in_mutex);