From: Kevin P. Fleming Date: Mon, 12 Dec 2005 17:31:45 +0000 (+0000) Subject: Merged revisions 7433,7435 via svnmerge from X-Git-Tag: 1.4.0-beta1~3198 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc50894149edebf8de99e10d9ceee47be92c165d;p=thirdparty%2Fasterisk.git Merged revisions 7433,7435 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r7433 | tilghman | 2005-12-12 11:19:29 -0600 (Mon, 12 Dec 2005) | 2 lines Typo ........ r7435 | kpfleming | 2005-12-12 11:30:59 -0600 (Mon, 12 Dec 2005) | 2 lines set all the child file descriptors to non-blocking so that we don't hang if the child fails to send a newline-terminated command or error message ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7436 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_externalivr.c b/apps/app_externalivr.c index 54b730b656..ad27c16599 100644 --- a/apps/app_externalivr.c +++ b/apps/app_externalivr.c @@ -345,8 +345,6 @@ static int app_exec(struct ast_channel *chan, void *data) goto exit; } - setvbuf(child_events, NULL, _IONBF, 0); - if (!(child_commands = fdopen(child_commands_fd, "r"))) { ast_chan_log(LOG_WARNING, chan, "Could not open stream for child commands\n"); goto exit; @@ -357,6 +355,10 @@ static int app_exec(struct ast_channel *chan, void *data) goto exit; } + setvbuf(child_events, NULL, _IONBF, 0); + setvbuf(child_commands, NULL, _IONBF, 0); + setvbuf(child_errors, NULL, _IONBF, 0); + res = 0; while (1) {