Skip to content

Commit 6aed817

Browse files
committed
- fix bug #54423, fix build in trunk, introduce by previous related commit
1 parent 6e7a301 commit 6aed817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_API.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2210,7 +2210,7 @@ ZEND_API int zend_get_module_started(const char *module_name) /* {{{ */
22102210

22112211
static int clean_module_class(const zend_class_entry **ce, int *module_number TSRMLS_DC) /* {{{ */
22122212
{
2213-
if ((*ce)->type == ZEND_INTERNAL_CLASS && (*ce)->module->module_number == *module_number) {
2213+
if ((*ce)->type == ZEND_INTERNAL_CLASS && (*ce)->info.internal.module->module_number == *module_number) {
22142214
return ZEND_HASH_APPLY_REMOVE;
22152215
} else {
22162216
return ZEND_HASH_APPLY_KEEP;

0 commit comments

Comments
 (0)