1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 01:18:19 +02:00

Don't overwrite existing handlers with parent ones.

This commit is contained in:
Andrei Zmievski
2001-02-27 05:18:34 +00:00
parent 18396f9875
commit cb00ed2bd3
+6 -3
View File
@@ -1103,9 +1103,12 @@ void zend_do_inheritance(zend_class_entry *ce, zend_class_entry *parent_ce)
zend_hash_merge(&ce->default_properties, &parent_ce->default_properties, (void (*)(void *)) zval_add_ref, (void *) &tmp, sizeof(zval *), 0);
zend_hash_merge(&ce->function_table, &parent_ce->function_table, (void (*)(void *)) function_add_ref, &tmp_zend_function, sizeof(zend_function), 0);
ce->parent = parent_ce;
ce->handle_property_get = parent_ce->handle_property_get;
ce->handle_property_set = parent_ce->handle_property_set;
ce->handle_function_call = parent_ce->handle_function_call;
if (!ce->handle_property_get)
ce->handle_property_get = parent_ce->handle_property_get;
if (!ce->handle_property_set)
ce->handle_property_set = parent_ce->handle_property_set;
if (!ce->handle_function_call)
ce->handle_function_call = parent_ce->handle_function_call;
do_inherit_parent_constructor(ce);
}