|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2004, PHP 5.0.1
- Improved and moved ActiveScript SAPI to PECL. (Wez)
+- Fixed but #29437 (Possible crash inside array_walk_recursive()). (Ilia)
- Fixed bug #29431 (crash when parsing invalid address; invalid address
returned by stream_socket_recvfrom(), stream_socket_getname()). (Wez)
- Fixed bug #29409 (Segfault in PHP functions called from XSLT). (Rob)
{
zval **args[3], /* Arguments to userland function */
*retval_ptr, /* Return value - unused */
- *key; /* Entry key */
+ *key=NULL; /* Entry key */
char *string_key;
uint string_key_len;
ulong num_key;
}
}
- zval_ptr_dtor(&key);
+ if (key) {
+ zval_ptr_dtor(&key);
+ key = NULL;
+ }
zend_hash_move_forward_ex(target_hash, &pos);
}