php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #63726
Patch bug63726.patch revision 2012-12-10 11:30 UTC by laruence@php.net
revision 2012-12-09 13:20 UTC by laruence@php.net
revision 2012-12-09 13:07 UTC by laruence@php.net

Patch bug63726.patch for Scripting Engine problem Bug #63726

Patch version 2012-12-09 13:20 UTC

Return to Bug #63726 | Download this patch
This patch is obsolete

Obsoleted by patches:

This patch renders other patches obsolete

Obsolete patches:

Patch Revisions: 2012-12-10 11:30 UTC | 2012-12-09 13:20 UTC | 2012-12-09 13:07 UTC

Developer: laruence@php.net

Line 10 (now 10), was 21 lines, now 8 lines

  +					efree(value);
   				}
   			} else {
   				zval *garbage = *property;
 diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
 index f25e7fa..917e0c1 100644
 --- a/Zend/zend_compile.c
 +++ b/Zend/zend_compile.c
 @@ -3333,7 +3333,7 @@ static zend_bool do_inherit_property_access_check(HashTable *target_ht, zend_pro
  		if ((child_info->flags & ZEND_ACC_PPP_MASK) > (parent_info->flags & ZEND_ACC_PPP_MASK)) {
  			zend_error(E_COMPILE_ERROR, "Access level to %s::$%s must be %s (as in class %s)%s", ce->name, hash_key->arKey, zend_visibility_string(parent_info->flags), parent_ce->name, (parent_info->flags&ZEND_ACC_PUBLIC) ? "" : " or weaker");
  		} else if ((child_info->flags & ZEND_ACC_STATIC) == 0) {
 -			Z_DELREF_P(ce->default_properties_table[parent_info->offset]);
 +			zval_ptr_dtor(&(ce->default_properties_table[parent_info->offset]));
  			ce->default_properties_table[parent_info->offset] = ce->default_properties_table[child_info->offset];
  			ce->default_properties_table[child_info->offset] = NULL;
  			child_info->offset = parent_info->offset;
  diff --git a/Zend/zend_object_handlers.c b/Zend/zend_object_handlers.c
  index d82493a..3374b0b 100644
  --- a/Zend/zend_object_handlers.c
  +++ b/Zend/zend_object_handlers.c
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat May 18 20:01:34 2024 UTC