From: Antony Dovgal Date: Mon, 15 Nov 2004 14:00:48 +0000 (+0000) Subject: fix CLI leaks when using malformed option string X-Git-Tag: RELEASE_0_2~687 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71d9afee0c42b866b4f2ebbd1ec451ac301e0186;p=php 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;