Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Zend/zend.c
Original file line number Diff line number Diff line change
Expand Up @@ -1210,6 +1210,10 @@ void zend_shutdown(void) /* {{{ */
CG(script_encoding_list) = NULL;
CG(script_encoding_list_size) = 0;
}
if (CG(internal_run_time_cache)) {
pefree(CG(internal_run_time_cache), 1);
CG(internal_run_time_cache) = NULL;
}
#endif
zend_map_ptr_static_last = 0;
zend_map_ptr_static_size = 0;
Expand Down
Loading