Skip to content

Commit

Permalink
Fix type inference
Browse files Browse the repository at this point in the history
This fizes oss-fuzz #47044
  • Loading branch information
dstogov committed May 11, 2022
1 parent f1fc58e commit 84c1e99
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Zend/Optimizer/zend_inference.c
Expand Up @@ -3227,7 +3227,12 @@ static zend_always_inline int _zend_update_type_info(
tmp |= t1 & (MAY_BE_RC1|MAY_BE_RCN);
}
if (opline->op2_type == IS_UNUSED) {
key_type |= MAY_BE_HASH_ONLY(t1) ? MAY_BE_ARRAY_NUMERIC_HASH : MAY_BE_ARRAY_KEY_LONG;
if (t1 & (MAY_BE_UNDEF|MAY_BE_NULL)) {
key_type |= MAY_BE_ARRAY_PACKED;
}
if (t1 & MAY_BE_ARRAY) {
key_type |= MAY_BE_HASH_ONLY(t1) ? MAY_BE_ARRAY_NUMERIC_HASH : MAY_BE_ARRAY_KEY_LONG;
}
} else {
if (t2 & (MAY_BE_LONG|MAY_BE_FALSE|MAY_BE_TRUE|MAY_BE_RESOURCE|MAY_BE_DOUBLE)) {
key_type |= MAY_BE_HASH_ONLY(t1) ? MAY_BE_ARRAY_NUMERIC_HASH : MAY_BE_ARRAY_KEY_LONG;
Expand Down
18 changes: 18 additions & 0 deletions ext/opcache/tests/opt/inference_007.phpt
@@ -0,0 +1,18 @@
--TEST--
Type inference 007: Incorrect array key type inference
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
--FILE--
<?php
function y() {
for(;;) {
s($array[]);
$array = array(""=>"");
}
}
?>
DONE
--EXPECT--
DONE

0 comments on commit 84c1e99

Please sign in to comment.