mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
fix the typo before everybody forgets about it
This commit is contained in:
@@ -135,7 +135,7 @@ ZEND_API void zend_objects_store_add_ref(zval *object TSRMLS_DC)
|
||||
#endif
|
||||
}
|
||||
|
||||
ZEND_API int zend_objects_is_detructor_called(zend_object_handle handle TSRMLS_DC)
|
||||
ZEND_API int zend_objects_is_destructor_called(zend_object_handle handle TSRMLS_DC)
|
||||
{
|
||||
if (EG(objects_store).object_buckets[handle].valid) {
|
||||
return EG(objects_store).object_buckets[handle].destructor_called;
|
||||
|
||||
@@ -66,7 +66,7 @@ ZEND_API void zend_objects_store_add_ref(zval *object TSRMLS_DC);
|
||||
ZEND_API void zend_objects_store_del_ref(zval *object TSRMLS_DC);
|
||||
ZEND_API void zend_objects_store_add_ref_by_handle(zend_object_handle handle TSRMLS_DC);
|
||||
ZEND_API void zend_objects_store_del_ref_by_handle(zend_object_handle handle TSRMLS_DC);
|
||||
ZEND_API int zend_objects_is_detructor_called(zend_object_handle handle TSRMLS_DC);
|
||||
ZEND_API int zend_objects_is_destructor_called(zend_object_handle handle TSRMLS_DC);
|
||||
ZEND_API zend_object_value zend_objects_store_clone_obj(zval *object TSRMLS_DC);
|
||||
ZEND_API void *zend_object_store_get_object(zval *object TSRMLS_DC);
|
||||
ZEND_API void *zend_object_store_get_object_by_handle(zend_object_handle handle TSRMLS_DC);
|
||||
|
||||
Reference in New Issue
Block a user