From 0595f361fb9efdb3df51829a02fbf7702f65ef95 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Sat, 11 Feb 2017 21:07:01 +0100 Subject: [PATCH] fix use of uninitalized value --- tester/call_video_tester.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tester/call_video_tester.c b/tester/call_video_tester.c index c26dad204..f99fb2bd6 100644 --- a/tester/call_video_tester.c +++ b/tester/call_video_tester.c @@ -347,7 +347,7 @@ static void call_with_video_added_2(void) { LinphoneCoreManager* pauline = linphone_core_manager_new(transport_supported(LinphoneTransportTls) ? "pauline_rc" : "pauline_tcp_rc"); bool_t call_ok; /*in this variant marie is already in automatically accept*/ - LinphoneVideoPolicy marie_policy; + LinphoneVideoPolicy marie_policy = {0}; marie_policy.automatically_accept=TRUE;