From: Ilia Alshanetsky Date: Fri, 6 Feb 2004 03:08:39 +0000 (+0000) Subject: MFH: Fixed possible memory leak with INI values. X-Git-Tag: php-4.3.5RC3~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a9b6b75a02082db13f46a3316e43387c88636067;p=php MFH: Fixed possible memory leak with INI values. --- diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index bbd8b28130..8ec290bcea 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -618,7 +618,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 */ @@ -640,7 +640,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) {