mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-30 10:33:13 +00:00
Fix FastAGI to not wait for the non-existant pid
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@46141 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1869,7 +1869,8 @@ static enum agi_result run_agi(struct ast_channel *chan, char *request, AGI *agi
|
|||||||
returnstatus = -1;
|
returnstatus = -1;
|
||||||
if (option_verbose > 2)
|
if (option_verbose > 2)
|
||||||
ast_verbose(VERBOSE_PREFIX_3 "AGI Script %s completed, returning %d\n", request, returnstatus);
|
ast_verbose(VERBOSE_PREFIX_3 "AGI Script %s completed, returning %d\n", request, returnstatus);
|
||||||
waitpid(pid, status, 0);
|
if (pid > 0)
|
||||||
|
waitpid(pid, status, 0);
|
||||||
/* No need to kill the pid anymore, since they closed us */
|
/* No need to kill the pid anymore, since they closed us */
|
||||||
pid = -1;
|
pid = -1;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user