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:
@@ -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, '=')) {
|
||||
|
Reference in New Issue
Block a user