From a548d2f19b2a5510a3554a576ea0f6b1a281ea76 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 9 Apr 2008 09:16:40 +0000 Subject: Fixed bug #44673 (With CGI argv/argc starts from arguments, not from script) --- sapi/cgi/cgi_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sapi') diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index e9cfe31403..a584dab515 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -1760,7 +1760,7 @@ consult the installation file that came with this distribution, or visit \n\ } else if (argc > php_optind) { /* file is on command line, but not in -f opt */ STR_FREE(SG(request_info).path_translated); - SG(request_info).path_translated = estrdup(argv[php_optind++]); + SG(request_info).path_translated = estrdup(argv[php_optind]); /* arguments after the file are considered script args */ SG(request_info).argc = argc - php_optind; SG(request_info).argv = &argv[php_optind]; -- cgit v1.2.1