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 1aead24 commit a32b9c7Copy full SHA for a32b9c7
Zend/zend_execute_API.c
@@ -216,19 +216,6 @@ void init_executor(void) /* {{{ */
216
}
217
/* }}} */
218
219
-static int zval_call_destructor(zval *zv) /* {{{ */
220
-{
221
- if (Z_TYPE_P(zv) == IS_INDIRECT) {
222
- zv = Z_INDIRECT_P(zv);
223
- }
224
- if (Z_TYPE_P(zv) == IS_OBJECT && Z_REFCOUNT_P(zv) == 1) {
225
- return ZEND_HASH_APPLY_REMOVE;
226
- } else {
227
- return ZEND_HASH_APPLY_KEEP;
228
229
-}
230
-/* }}} */
231
-
232
static void zend_unclean_zval_ptr_dtor(zval *zv) /* {{{ */
233
{
234
if (Z_TYPE_P(zv) == IS_INDIRECT) {
0 commit comments