summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Brooks <dbrooks@digium.com>2009-11-11 18:13:56 +0000
committerDavid Brooks <dbrooks@digium.com>2009-11-11 18:13:56 +0000
commitc5990d41bbe95cade20e2b6a190fa1e18363f82c (patch)
tree8e811129820ada54d8066bf366be69768a8c7515
parent0ce378d3da026c092478700d76a9502735e62703 (diff)
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: https://origsvn.digium.com/svn/asterisk/trunk@229460 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--apps/app_softhangup.c2
1 files changed, 1 insertions, 1 deletions
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);