]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
where did the read lock go in del_member
authorAnthony Minessale <anthony.minessale@gmail.com>
Thu, 7 Dec 2006 18:16:29 +0000 (18:16 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Thu, 7 Dec 2006 18:16:29 +0000 (18:16 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3567 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_conference/mod_conference.c

index c6269959c9bfb4a57d48df8f8bf065545a1d25dd..36c5fd1485b3d461f523a4a0c8d1d7ce337272ae 100644 (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);