|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2004, Version 4.3.6
- Synchronized bundled GD library with GD 2.0.22. (Ilia)
+- Fixed bug #27782 (Wrong behaviour of next(), prev() and each()). (Ilia)
+- Fixed bug #27764 (Get return value from a stored procedure not returning any
+ result sets). (Frank)
- Fixed bug #27762 (SCO Openserver doesn't have S_ISSOCK). (Wez)
- Fixed bug #27743 (Make sure Money types are converted and returned
correctly). (Frank)
RETURN_FALSE;
}
zend_hash_move_backwards(target_hash);
+ if (!target_hash->pInternalPointer) {
+ zend_hash_internal_pointer_reset(target_hash);
+ RETURN_FALSE;
+ }
if (return_value_used) {
if (zend_hash_get_current_data(target_hash, (void **) &entry) == FAILURE) {
RETURN_FALSE;
}
zend_hash_move_forward(target_hash);
+ if (!target_hash->pInternalPointer) {
+ zend_hash_internal_pointer_end(target_hash);
+ RETURN_FALSE;
+ }
if (return_value_used) {
if (zend_hash_get_current_data(target_hash, (void **) &entry) == FAILURE) {