Merge pull request #1238 in FS/freeswitch from ~ANTONIO/freeswitch:bugfix/FS-10174-sefgault-in-mod_conference-after to master

* commit 'bd4b835c4c32b0e1c6f31e618ed1804f7e53886a':
  FS-10174 [mod_conference] fix segfault after playing alone-sound when video is not enabled
This commit is contained in:
Mike Jerris 2017-03-24 17:12:42 +00:00
commit f9d69580e8
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ switch_status_t conference_file_close(conference_obj_t *conference, conference_f
}
#endif
if (node->canvas_id > -1) {
if (node->canvas_id > -1 && conference->canvases[node->canvas_id]) {
canvas = conference->canvases[node->canvas_id];
if (canvas->playing_video_file) {