summaryrefslogtreecommitdiff
path: root/apps/app_sms.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-10-01 15:44:06 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-10-01 15:44:06 +0000
commit38401621f5cce83adf4ad6be56322c5bc27eb251 (patch)
tree93b8b635f0c96bebc93d3e489241518e35dd046f /apps/app_sms.c
parentae0d0de9873643633a324616591030015234731c (diff)
Initializing buffer prevents a segfault when arguments are incomplete.
(closes issue #13471) Reported by: alecdavis Patches: 20080916__bug13471.diff.txt uploaded by Corydon76 (license 14) Tested by: alecdavis git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@145428 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_sms.c')
-rw-r--r--apps/app_sms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_sms.c b/apps/app_sms.c
index 3beda5030..fba111d66 100644
--- a/apps/app_sms.c
+++ b/apps/app_sms.c
@@ -1744,7 +1744,7 @@ static int sms_exec(struct ast_channel *chan, void *data)
sms_t h = { 0 };
/* argument parsing support */
struct ast_flags flags;
- char *parse, *sms_opts[OPTION_ARG_ARRAY_SIZE];
+ char *parse, *sms_opts[OPTION_ARG_ARRAY_SIZE] = { 0, };
char *p;
AST_DECLARE_APP_ARGS(sms_args,
AST_APP_ARG(queue);