mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
More specific bug description.
This commit is contained in:
parent
eb5b829803
commit
1bf4fc571c
@ -1,8 +1,8 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"name": "ABIEncoderV2StorageArrayWithMultiSlotElement",
|
"name": "ABIEncoderV2StorageArrayWithMultiSlotElement",
|
||||||
"summary": "Storage arrays containing structs or other arrays are not read properly when directly encoded in function calls or in abi.encode*.",
|
"summary": "Storage arrays containing structs or other statically-sized arrays are not read properly when directly encoded in external function calls or in abi.encode*.",
|
||||||
"description": "When storage arrays whose elements occupy more than a single storage slot are directly encoded in function calls or using abi.encode*, their elements are read in an overlapping manner, i.e. the element pointer is not properly advanced between reads. This is not a problem when the storage data is first copied to a memory variable.",
|
"description": "When storage arrays whose elements occupy more than a single storage slot are directly encoded in external function calls or using abi.encode*, their elements are read in an overlapping manner, i.e. the element pointer is not properly advanced between reads. This is not a problem when the storage data is first copied to a memory variable or if the storage array only contains value types or dynamically-sized arrays.",
|
||||||
"introduced": "0.4.16",
|
"introduced": "0.4.16",
|
||||||
"fixed": "0.5.10",
|
"fixed": "0.5.10",
|
||||||
"severity": "low",
|
"severity": "low",
|
||||||
|
Loading…
Reference in New Issue
Block a user