projects
/
asterisk/asterisk.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix EAGI fd leak (bug #698)
[asterisk/asterisk.git]
/
apps
/
app_agi.c
diff --git
a/apps/app_agi.c
b/apps/app_agi.c
index
57e37e2
..
8ca56f4
100755
(executable)
--- a/
apps/app_agi.c
+++ b/
apps/app_agi.c
@@
-167,6
+167,10
@@
static int launch_script(char *script, char *args, int *fds, int *efd, int *opid
/* close what we're not using in the parent */
close(toast[1]);
close(fromast[0]);
+
+ // [PHM 12/18/03]
+ close(audio[0])
+
*opid = pid;
return 0;