1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Fixup DEBUG_CGI code paths to compile and not leak fds.

PR: 9670, 9671
Submitted by:   David MacKenzie <djm@pix.net>
Reviewed by:	Justin Erenkrantz


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93474 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Justin Erenkrantz
2002-02-18 06:15:38 +00:00
parent 47811ec5b9
commit 1b1337e4df
2 changed files with 8 additions and 2 deletions

View File

@@ -402,8 +402,8 @@ static apr_status_t run_cgi_child(apr_file_t **script_out,
RAISE_SIGSTOP(CGI_CHILD);
#ifdef DEBUG_CGI
fprintf(dbg, "Attempting to exec %s as %sCGI child (argv0 = %s)\n",
r->filename, cld->nph ? "NPH " : "", argv0);
fprintf(dbg, "Attempting to exec %s as CGI child (argv0 = %s)\n",
r->filename, argv[0]);
#endif
if (e_info->prog_type == RUN_AS_CGI) {
@@ -482,6 +482,9 @@ static apr_status_t run_cgi_child(apr_file_t **script_out,
}
}
}
#ifdef DEBUG_CGI
fclose(dbg);
#endif
return (rc);
}