diff --git a/ChangeLog b/ChangeLog index 5057def9e49..566cd360a44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ PHP 4.0 CHANGE LOG ChangeLog ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ?? 1999, Version 4.0 Beta 3 +- OciFetchInto now resets the returned array in all cases (Thies) - Fixed mysql_errno() to work with recent versions of MySQL (Zeev) - Fixed a problem with define() and boolean values (Zeev) - Fixed inclusion of gd/freetype functions (Sascha) diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index 408c9ea622f..62761e9e018 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -3042,6 +3042,8 @@ PHP_FUNCTION(ocifetchinto) } } + zend_hash_internal_pointer_reset(array->value.ht); + #if PHP_API_VERSION < 19990421 element = emalloc(sizeof(pval)); #endif