Do not free tick function entry

This memory is freed by zend_llist.
This commit is contained in:
Aaron Piotrowski 2021-05-09 11:44:32 -05:00
parent 3c3ec441e4
commit 7ec048f96d
No known key found for this signature in database
GPG Key ID: ADD1EF783EDE9EEB

View File

@ -1682,8 +1682,6 @@ void user_tick_function_dtor(user_tick_function_entry *tick_function_entry) /* {
for (size_t i = 0; i < tick_function_entry->fci.param_count; i++) {
zval_ptr_dtor(&tick_function_entry->fci.params[i]);
}
efree(tick_function_entry);
}
/* }}} */