aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ex.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ex.c b/ex.c
index 8e25bd1..cad8d9a 100644
--- a/ex.c
+++ b/ex.c
@@ -137,6 +137,11 @@ launch_cgi(struct iri *iri, struct cgireq *req, struct vhost *vhost,
switch (fork()) {
case -1:
+ log_err(NULL, "fork failed: %s", strerror(errno));
+ close(p[0]);
+ close(p[1]);
+ close(errp[0]);
+ close(errp[1]);
return -1;
case 0: { /* child */
@@ -230,6 +235,7 @@ launch_cgi(struct iri *iri, struct cgireq *req, struct vhost *vhost,
default:
close(p[1]);
+ close(errp[0]);
close(errp[1]);
mark_nonblock(p[0]);
return p[0];