We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 865686f commit bf875fbCopy full SHA for bf875fb
Zend/zend.c
@@ -781,7 +781,7 @@ static void zend_resolve_property_types(void) /* {{{ */
781
ZEND_HASH_FOREACH_PTR(&ce->properties_info, prop_info) {
782
if (prop_info->type == IS_OBJECT && prop_info->type_name) {
783
zend_class_entry *prop_ce =
784
- zend_hash_find(CG(class_table), prop_info->type_name);
+ (zend_class_entry*)zend_hash_find(CG(class_table), prop_info->type_name);
785
786
assert(prop_ce && prop_ce->type == ZEND_INTERNAL_CLASS);
787
prop_info->type_ce = prop_ce;
0 commit comments