Skip to content

Commit 7ec048f

Browse files
committed
Do not free tick function entry
This memory is freed by zend_llist.
1 parent 3c3ec44 commit 7ec048f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ext/standard/basic_functions.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1682,8 +1682,6 @@ void user_tick_function_dtor(user_tick_function_entry *tick_function_entry) /* {
16821682
for (size_t i = 0; i < tick_function_entry->fci.param_count; i++) {
16831683
zval_ptr_dtor(&tick_function_entry->fci.params[i]);
16841684
}
1685-
1686-
efree(tick_function_entry);
16871685
}
16881686
/* }}} */
16891687

0 commit comments

Comments
 (0)