1
0
Fork 0

PHP_6: fix method prototype

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@513 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
Xuefer 2008-01-05 10:44:57 +00:00
parent 0c5f4896ce
commit 1af51b5e1f
1 changed files with 1 additions and 1 deletions

View File

@ -645,7 +645,7 @@ DEF_STRUCT_P_FUNC(`zend_op_array', , `dnl {{{
if (src->prototype != NULL
&& zend_u_hash_find(&(processor->active_class_entry_dst->parent->function_table),
UG(unicode) ? IS_UNICODE : IS_STRING,
src->function_name, xc_zstrlen(UG(unicode), src->function_name) + 1,
src->function_name, xc_zstrlen(UG(unicode) ? IS_UNICODE : IS_STRING, src->function_name) + 1,
(void **) &parent) == SUCCESS) {
/* see do_inherit_method_check() */
if ((parent->common.fn_flags & ZEND_ACC_ABSTRACT)) {