From: Anthony Minessale Date: Tue, 17 Mar 2015 19:10:36 +0000 (-0500) Subject: FS-7513: don't want detach here X-Git-Tag: v1.6.2~614^2~250 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13e60c420d448a775ec224e5f4cc7d0ad1318dde;p=thirdparty%2Ffreeswitch.git FS-7513: don't want detach here --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 1e50605220..860977d08e 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -11833,7 +11833,6 @@ static void launch_conference_video_muxing_thread(conference_obj_t *conference) if (!conference->video_muxing_thread) { switch_set_flag_locked(conference, CFLAG_RUNNING); switch_threadattr_create(&thd_attr, conference->pool); - switch_threadattr_detach_set(thd_attr, 1); switch_threadattr_priority_set(thd_attr, SWITCH_PRI_REALTIME); switch_threadattr_stacksize_set(thd_attr, SWITCH_THREAD_STACKSIZE); switch_set_flag(conference, CFLAG_VIDEO_MUXING);