aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-06 21:03:10 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-06 21:03:10 +0000
commitaa63308a8dafae0dde80352c20fea656dc273c43 (patch)
tree1c321b0d71535b319e9fa11deaecbabecdb79d33 /res
parent303c00556ddf9119994154ef45c7144f6d34406e (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@42169 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index e9b275ed0..de4c7be39 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2047,7 +2047,8 @@ static int agi_exec_full(struct ast_channel *chan, void *data, int enhanced, int
agi.ctrl = fds[0];
agi.audio = efd;
res = run_agi(chan, argv[0], &agi, pid, dead);
- close(fds[1]);
+ if (fds[1] != fds[0])
+ close(fds[1]);
if (efd > -1)
close(efd);
}