File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 3
3
?? ??? 2012, PHP 5.3.18
4
4
5
5
- Core:
6
+ . Fixed bug #63093 (Segfault while load extension failed in zts-build).
7
+ (Laruence)
6
8
. Fixed bug #62976 (Notice: could not be converted to int when comparing
7
9
some builtin classes). (Laruence)
8
10
. Fixed bug #61767 (Shutdown functions not called in certain error
Original file line number Diff line number Diff line change @@ -2122,7 +2122,9 @@ void module_destructor(zend_module_entry *module) /* {{{ */
2122
2122
/* Deinitilaise module globals */
2123
2123
if (module -> globals_size ) {
2124
2124
#ifdef ZTS
2125
- ts_free_id (* module -> globals_id_ptr );
2125
+ if (* module -> globals_id_ptr ) {
2126
+ ts_free_id (* module -> globals_id_ptr );
2127
+ }
2126
2128
#else
2127
2129
if (module -> globals_dtor ) {
2128
2130
module -> globals_dtor (module -> globals_ptr TSRMLS_CC );
You can’t perform that action at this time.
0 commit comments