diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-02-06 03:08:27 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-02-06 03:08:27 +0000 |
commit | c858a4e93cc4a34a6114d38b1cfd7055fd900fc9 (patch) | |
tree | 0cb7655630a16715968fc03613db2b7c1c0ef604 | |
parent | 1eb6a182898cb0011d35cbf9b66755cfc93edaa5 (diff) | |
download | php-git-c858a4e93cc4a34a6114d38b1cfd7055fd900fc9.tar.gz |
Fixed possible memory leak with INI values.
-rw-r--r-- | sapi/cli/php_cli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 9d9870a020..3d550e5d73 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -663,7 +663,7 @@ int main(int argc, char *argv[]) php_cli_usage(argv[0]); php_end_ob_buffers(1 TSRMLS_CC); exit_status=1; - goto out_err; + goto err; case 'i': /* php info & quit */ @@ -685,7 +685,7 @@ int main(int argc, char *argv[]) php_printf("\n"); php_end_ob_buffers(1 TSRMLS_CC); exit_status=1; - goto out_err; + goto err; case 'v': /* show php version & quit */ if (php_request_startup(TSRMLS_C)==FAILURE) { |