1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00

MFH: init variables

This commit is contained in:
Antony Dovgal
2006-06-20 13:28:11 +00:00
parent 3ff986ecf7
commit 5ffbb85103
+2 -2
View File
@@ -2415,8 +2415,8 @@ ZEND_API int zend_fcall_info_args(zend_fcall_info *fci, zval *args TSRMLS_DC)
ZEND_API int zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval **retval_ptr_ptr, zval *args TSRMLS_DC)
{
zval *retval, ***org_params;
int result, org_count;
zval *retval, ***org_params = NULL;
int result, org_count = 0;
fci->retval_ptr_ptr = retval_ptr_ptr ? retval_ptr_ptr : &retval;
if (args) {