From 98617d82a1a58c24135f7bc15ef31c279737f0fc Mon Sep 17 00:00:00 2001 From: Jason Parker <jparker@digium.com> Date: Mon, 29 Oct 2007 19:56:50 +0000 Subject: [PATCH] Make sure we set flags to a 0 value before trying to use it. Pointed out by seanbright while I was debugging issue 11109. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@87393 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_record.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_record.c b/apps/app_record.c index 654bfdd8f4..83d4000fd6 100644 --- a/apps/app_record.c +++ b/apps/app_record.c @@ -117,7 +117,7 @@ static int record_exec(struct ast_channel *chan, void *data) int ioflags; int waitres; struct ast_silence_generator *silgen = NULL; - struct ast_flags flags; + struct ast_flags flags = { 0, }; AST_DECLARE_APP_ARGS(args, AST_APP_ARG(filename); AST_APP_ARG(silence); -- GitLab