From 71d9afee0c42b866b4f2ebbd1ec451ac301e0186 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Mon, 15 Nov 2004 14:00:48 +0000 Subject: [PATCH] fix CLI leaks when using malformed option string --- sapi/cli/php_cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1