We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 134270f commit 234d566Copy full SHA for 234d566
Zend/zend_objects_API.c
@@ -212,6 +212,9 @@ ZEND_API void ZEND_FASTCALL zend_objects_store_del(zend_object *object) /* {{{ *
212
GC_ADD_FLAGS(object, IS_OBJ_FREE_CALLED);
213
GC_SET_REFCOUNT(object, 1);
214
object->handlers->free_obj(object);
215
+ printf("Freeing %p and invoking free\n");
216
+ } else {
217
+ printf("Freeing %p without invoking free\n");
218
}
219
ptr = ((char*)object) - object->handlers->offset;
220
GC_REMOVE_FROM_BUFFER(object);
0 commit comments