- Fixed bug #50810 (property_exists does not work for private)

This commit is contained in:
Felipe Pena 2010-03-07 00:49:34 +00:00
parent 03bec4299f
commit ea1447c3ce
2 changed files with 3 additions and 4 deletions

1
NEWS
View File

@ -19,6 +19,7 @@ PHP NEWS
- Fixed bug #51023 (filter doesn't detect int overflows with GCC 4.4).
(Raphael Geissert)
- Fixed bug #50999 (unaligned memory access in dba_fetch()). (Felipe)
- Fixed bug #50810 (property_exists does not work for private). (Felipe)
- Fixed bug #50731 (Inconsistent namespaces sent to functions registered with
spl_autoload_register). (Felipe)
- Fixed bug #50358 (Compile failure compiling ext/phar/util.lo). (Felipe)

View File

@ -1151,10 +1151,8 @@ ZEND_FUNCTION(property_exists)
}
h = zend_get_hash_value(property, property_len+1);
if (zend_hash_quick_find(&ce->properties_info, property, property_len+1, h, (void **) &property_info) == SUCCESS) {
if (property_info->flags & ZEND_ACC_SHADOW) {
RETURN_FALSE;
}
if (zend_hash_quick_find(&ce->properties_info, property, property_len+1, h, (void **) &property_info) == SUCCESS
&& (property_info->flags & ZEND_ACC_SHADOW) == 0) {
RETURN_TRUE;
}