From 060cd853ac8afeb5529069057538109fdd70a107 Mon Sep 17 00:00:00 2001 From: dbrooks Date: Wed, 11 Nov 2009 18:13:56 +0000 Subject: Flags not initialized in app_softhangup.c, causing undefined behavior Trivial patch [kobaz] to initialize an ast_flags = {0} (closes issue #16129) Reported by: kobaz git-svn-id: http://svn.digium.com/svn/asterisk/trunk@229460 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_softhangup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/app_softhangup.c') diff --git a/apps/app_softhangup.c b/apps/app_softhangup.c index 3513bb775..1c880b4e8 100644 --- a/apps/app_softhangup.c +++ b/apps/app_softhangup.c @@ -74,7 +74,7 @@ static int softhangup_exec(struct ast_channel *chan, const char *data) struct ast_channel *c = NULL; char *cut, *opts[0]; char name[AST_CHANNEL_NAME] = "", *parse; - struct ast_flags flags; + struct ast_flags flags = {0}; int lenmatch; AST_DECLARE_APP_ARGS(args, AST_APP_ARG(channel); -- cgit v1.2.3