diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-08-15 23:10:02 +0800 |
---|---|---|
committer | Leonardo Alt <leo@ethereum.org> | 2018-08-15 23:37:21 +0800 |
commit | c00db3c247dd2aa296650045b995cbfa87ba2324 (patch) | |
tree | 66f5eea0ada05579335f49dd901c28efb1262344 /docs/bugs.json | |
parent | faed71c6b1235a808a2c87026b345a637238e4a9 (diff) | |
download | dexon-solidity-c00db3c247dd2aa296650045b995cbfa87ba2324.tar.gz dexon-solidity-c00db3c247dd2aa296650045b995cbfa87ba2324.tar.zst dexon-solidity-c00db3c247dd2aa296650045b995cbfa87ba2324.zip |
Bug list entry
Diffstat (limited to 'docs/bugs.json')
-rw-r--r-- | docs/bugs.json | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/bugs.json b/docs/bugs.json index 3f20077f..839ea128 100644 --- a/docs/bugs.json +++ b/docs/bugs.json @@ -1,5 +1,13 @@ [ { + "name": "EventStructWrongData", + "summary": "Using structs in events logged wrong data.", + "description": "If a struct is used in an event, the address of the struct is logged instead of the actual data.", + "introduced": "0.4.17", + "fixed": "0.5.0", + "severity": "very low" + }, + { "name": "NestedArrayFunctionCallDecoder", "summary": "Calling functions that return multi-dimensional fixed-size arrays can result in memory corruption.", "description": "If Solidity code calls a function that returns a multi-dimensional fixed-size array, array elements are incorrectly interpreted as memory pointers and thus can cause memory corruption if the return values are accessed. Calling functions with multi-dimensional fixed-size arrays is unaffected as is returning fixed-size arrays from function calls. The regular expression only checks if such functions are present, not if they are called, which is required for the contract to be affected.", |