From 4afb2649b90eae998f676958f46c55b92ba56cfd Mon Sep 17 00:00:00 2001 From: Jeff Peeler Date: Fri, 17 Oct 2008 00:14:19 +0000 Subject: [PATCH] Initialize character arrays as they are not guaranteed to be set. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@150309 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_meetme.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 6a832e7619..070c3c7dc4 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -3391,8 +3391,8 @@ static int conf_exec(struct ast_channel *chan, void *data) } } if (!ast_strlen_zero(confno)) { - char useropts[OPTIONS_LEN]; - char adminopts[OPTIONS_LEN]; + char useropts[OPTIONS_LEN] = ""; + char adminopts[OPTIONS_LEN] = ""; /* Check the validity of the conference */ cnf = find_conf(chan, confno, 1, dynamic, the_pin, sizeof(the_pin), 1, &confflags);