mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.3' into PHP-8.4
* PHP-8.3: Fix GH-18309: ipv6 filter integer overflow Fix GH-18304: Changing the properties of a DateInterval through dynamic properties triggers a SegFault
This commit is contained in:
commit
a019fbd970
16 changed files with 135 additions and 11 deletions
|
@ -117,7 +117,7 @@ zval *xmlreader_get_property_ptr_ptr(zend_object *object, zend_string *name, int
|
|||
xmlreader_prop_handler *hnd = zend_hash_find_ptr(&xmlreader_prop_handlers, name);
|
||||
if (hnd == NULL) {
|
||||
retval = zend_std_get_property_ptr_ptr(object, name, type, cache_slot);
|
||||
} else {
|
||||
} else if (cache_slot) {
|
||||
cache_slot[0] = cache_slot[1] = cache_slot[2] = NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue