From: Antony Dovgal Date: Tue, 20 Jun 2006 13:01:08 +0000 (+0000) Subject: initialize pointers X-Git-Tag: RELEASE_1_0_0RC1~2692 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=737e1bdd92d9a6539b364b760522c4313e7aa812;p=php initialize pointers --- diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index ccb3f4152b..c990c81a2a 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -563,7 +563,7 @@ int main(int argc, char *argv[]) /* temporary locals */ int behavior=PHP_MODE_STANDARD; #ifdef HAVE_REFLECTION - char *reflection_what; + char *reflection_what = NULL; #endif int orig_optind=php_optind; char *orig_optarg=php_optarg; @@ -1189,7 +1189,7 @@ int main(int argc, char *argv[]) case PHP_MODE_REFLECTION_CLASS: case PHP_MODE_REFLECTION_EXTENSION: { - zend_class_entry *pce; + zend_class_entry *pce = NULL; zval *arg, *ref; zend_execute_data execute_data;