mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Use correct variable
This seems to stem from a copy paste, however there is no object variable in this function
This commit is contained in:
parent
3ebce8e9fc
commit
ba45addb38
1 changed files with 1 additions and 1 deletions
|
@ -1007,7 +1007,7 @@ ZEND_API zval *zend_std_get_property_ptr_ptr(zend_object *zobj, zend_string *nam
|
|||
zend_property_info *prop_info = NULL;
|
||||
|
||||
#if DEBUG_OBJECT_HANDLERS
|
||||
fprintf(stderr, "Ptr object #%d property: %s\n", object->handle, ZSTR_VAL(name));
|
||||
fprintf(stderr, "Ptr object #%d property: %s\n", zobj->handle, ZSTR_VAL(name));
|
||||
#endif
|
||||
|
||||
property_offset = zend_get_property_offset(zobj->ce, name, (zobj->ce->__get != NULL), cache_slot, &prop_info);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue