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

Fix the building of cgi command lines when the query string

contains '='.

PR:              13914
Submitted by:	 Ville Skytt� <ville.skytta@iki.fi> (mod_cgi)
                 Jeff Trawick (mod_cgid)


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97601 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jeff Trawick
2002-11-22 14:45:19 +00:00
parent 42f44aa4b1
commit bd108a8478
3 changed files with 17 additions and 9 deletions

View File

@@ -514,7 +514,6 @@ static apr_status_t default_build_command(const char **cmd, const char ***argv,
if (e_info->process_cgi) {
*cmd = r->filename;
args = r->args;
/* Do not process r->args if they contain an '=' assignment
*/
if (r->args && r->args[0] && !ap_strchr_c(r->args, '=')) {