From b8a18f7d83615ff54df9f9fae535839a079b82dd Mon Sep 17 00:00:00 2001 From: Andrey Volk Date: Fri, 20 Sep 2019 20:02:32 +0400 Subject: [PATCH] FS-12057: [mod_conference] Fix video mute (use of uninitialized pointer) --- src/mod/applications/mod_conference/conference_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/applications/mod_conference/conference_video.c b/src/mod/applications/mod_conference/conference_video.c index 95da2b15e9..625e2406ec 100644 --- a/src/mod/applications/mod_conference/conference_video.c +++ b/src/mod/applications/mod_conference/conference_video.c @@ -3866,7 +3866,7 @@ void *SWITCH_THREAD_FUNC conference_video_muxing_thread_run(switch_thread_t *thr switch_image_t *mute_img = omember->video_mute_img ? omember->video_mute_img : omember->pcanvas_img; if (mute_img) { - switch_image_t *tmp; + switch_image_t *tmp = NULL; switch_img_copy(mute_img, &tmp); switch_img_fit(&tmp, layer->screen_w, layer->screen_h, SWITCH_FIT_SIZE);