From: Derick Rethans Date: Fri, 5 Nov 2004 15:08:11 +0000 (+0000) Subject: - Fix for bug #30367, #30490 and possibly #30011. X-Git-Tag: php-5.0.3RC1~85 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aac98f3ebadd409e3edc5e9473797220fc2875ea;p=php - Fix for bug #30367, #30490 and possibly #30011. --- diff --git a/NEWS b/NEWS index 739fc1ed2f..8bee5bd775 100644 --- a/NEWS +++ b/NEWS @@ -12,8 +12,10 @@ PHP NEWS - Fixed bug #30658 (Ensure that temporary files created by GD are removed). (Ilia) - Fixed bug #30645 (def. multi result set support for mysql_connect). (Georg) +- Fixed bug #30637 (compile with pear error). (Antony) - Fixed bug #30572 (crash when comparing SimpleXML attribute to a boolean). (Andi) +- Fixed bug #30490 (PEAR installation fails). (Antony) - Fixed bug #30475 (curl_getinfo() may crash in some situations). (Ilia) - Fixed bug #30442 (segfault when parsing ?getvariable[][ ). (Tony) - Fixed bug #30388 (rename across filesystems loses ownership and diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index f150479c71..5a8f380de8 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -685,7 +685,7 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS zend_error(E_ERROR, "Object does not support method calls"); } EX(function_state).function = - Z_OBJ_HT_PP(fci->object_pp)->get_method(*fci->object_pp, Z_STRVAL_P(fci->function_name), Z_STRLEN_P(fci->function_name) TSRMLS_CC); + Z_OBJ_HT_PP(fci->object_pp)->get_method(fci->object_pp, Z_STRVAL_P(fci->function_name), Z_STRLEN_P(fci->function_name) TSRMLS_CC); } else if (calling_scope) { char *function_name_lc = zend_str_tolower_dup(Z_STRVAL_P(fci->function_name), Z_STRLEN_P(fci->function_name));