From: Antony Dovgal Date: Mon, 15 Nov 2004 14:08:33 +0000 (+0000) Subject: MFH: fix CLI leaks when using malformed option string X-Git-Tag: php-5.0.3RC1~66 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6749b09d8baf94450965d40402e19058cd9670ef;p=php MFH: fix CLI leaks when using malformed option string --- diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 2af1cb7ce3..5e04ea6eca 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -870,7 +870,7 @@ int main(int argc, char *argv[]) if (param_error) { PUTS(param_error); exit_status=1; - goto out_err; + goto err; } CG(interactive) = interactive;