From: Pierre Joye Date: Thu, 31 Mar 2011 23:58:06 +0000 (+0000) Subject: - fix bug #54423, fix build in trunk, introduce by previous related commit X-Git-Tag: php-5.4.0alpha1~191^2~92 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6aed81764e7a4fc95b6fb7df20dc7dd6e2b12f04;p=php - fix bug #54423, fix build in trunk, introduce by previous related commit --- diff --git a/Zend/zend_API.c b/Zend/zend_API.c index 2d944785c5..2b87648e30 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -2210,7 +2210,7 @@ ZEND_API int zend_get_module_started(const char *module_name) /* {{{ */ static int clean_module_class(const zend_class_entry **ce, int *module_number TSRMLS_DC) /* {{{ */ { - if ((*ce)->type == ZEND_INTERNAL_CLASS && (*ce)->module->module_number == *module_number) { + if ((*ce)->type == ZEND_INTERNAL_CLASS && (*ce)->info.internal.module->module_number == *module_number) { return ZEND_HASH_APPLY_REMOVE; } else { return ZEND_HASH_APPLY_KEEP;