Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: php/php-src
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f39c07a
Choose a base ref
...
head repository: arnaud-lb/php-src
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8421f6b
Choose a head ref
  • 1 commit
  • 15 files changed
  • 1 contributor

Commits on Sep 12, 2024

  1. Fix zend_get_property_info_for_slot() for lazy objects

    zend_get_property_info_for_slot(obj, slot) assumes that 'slot' belongs to 'obj',
    but that may not be the case for lazy proxies.
    
    Fortunatley, the property info is often already available in path when it is
    nedded.
    
    For other cases, I make zend_get_property_info_for_slot() aware of lazy objects,
    and add zend_get_property_info_for_slot_self() for cases where the 'slot' is
    known to belong to the object itself.
    
    Fixes oss-fuzz #71446
    arnaud-lb committed Sep 12, 2024
    Configuration menu
    Copy the full SHA
    8421f6b View commit details
    Browse the repository at this point in the history
Loading