1
0
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:
Antony Dovgal
2006-05-20 19:08:25 +00:00
parent 9b314a8406
commit e697da651c
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -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);