This commit is contained in:
Marcus Boerger 2006-05-27 19:04:16 +00:00
parent 341ffb3f3d
commit f93bf1007a
3 changed files with 4 additions and 3 deletions

View file

@ -3318,6 +3318,7 @@ static int zend_constant_ct_subst(znode *result, zval *const_name TSRMLS_DC)
return 0;
}
void zend_do_fetch_constant(znode *result, znode *constant_container, znode *constant_name, int mode TSRMLS_DC)
{
switch (mode) {

View file

@ -239,7 +239,7 @@ ZEND_API struct _zend_property_info *zend_get_property_info(zend_class_entry *ce
EG(std_property_info).name = Z_UNIVAL_P(member);
EG(std_property_info).name_length = Z_UNILEN_P(member);
EG(std_property_info).h = h;
EG(std_property_info).ce = ce;;
EG(std_property_info).ce = ce;
property_info = &EG(std_property_info);
}
return property_info;