mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
AsmAnalysis: Fix out of bounds read due to incorrect bounds checking on literal arguments
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
{
|
||||
function f(a,b) {}
|
||||
f(x,1)
|
||||
}
|
||||
// ----
|
||||
// DeclarationError 8198: (27-28): Identifier not found.
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
let x
|
||||
function f(a,b) {}
|
||||
f(x,1)
|
||||
}
|
||||
// ----
|
||||
Reference in New Issue
Block a user