mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
MFB : Fixed bug #43386 (array_globals not reset to 0 properly on init)
This commit is contained in:
parent
84c3c96754
commit
a204180d64
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ ZEND_DECLARE_MODULE_GLOBALS(array)
|
||||||
*/
|
*/
|
||||||
static void php_array_init_globals(zend_array_globals *array_globals)
|
static void php_array_init_globals(zend_array_globals *array_globals)
|
||||||
{
|
{
|
||||||
memset(array_globals, 0, sizeof(array_globals));
|
memset(array_globals, 0, sizeof(zend_array_globals));
|
||||||
}
|
}
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue