dect
/
asterisk
Archived
13
0
Fork 0

Fixes issue with hangups not being sent and external process never terminating.

The ignore_hangup, run_dead, and noanswer flags were never initilized to zero causing hangups to never be issued.  If the external script expects to be notified of a hangup and never receives one, it runs indefinitely. 

(closes issue #14251)
Reported by: chris-mac
Tested by: dvossel



git-svn-id: http://svn.digium.com/svn/asterisk/trunk@174325 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
dvossel 2009-02-09 17:26:02 +00:00
parent a610dee8ab
commit 4d3a6e4a88
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ static struct playlist_entry *make_entry(const char *filename)
static int app_exec(struct ast_channel *chan, void *data)
{
struct ast_flags flags;
struct ast_flags flags = { 0, };
char *opts[0];
struct playlist_entry *entry;
int child_stdin[2] = { 0, 0 };