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 0fbbd26 commit 6f1e1d2Copy full SHA for 6f1e1d2
Zend/zend_API.c
@@ -3088,7 +3088,7 @@ ZEND_API zend_type_node *zend_type_to_interned_tree(const zend_type type) {
3088
zend_type_node *child = zend_type_to_interned_tree(*subtype);
3089
3090
if (child->kind == kind) {
3091
- for (uint32_t i = 0; child->compound.num_types; i++) {
+ for (uint32_t i = 0; i < child->compound.num_types; i++) {
3092
ADD_TO_TYPE_TREE(children, num_children, child->compound.types[i]);
3093
}
3094
} else {
0 commit comments