aboutsummaryrefslogtreecommitdiffstats
path: root/docs/bugs.json
diff options
context:
space:
mode:
authorLeonardo Alt <leo@ethereum.org>2018-07-25 21:53:03 +0800
committerchriseth <chris@ethereum.org>2018-08-14 21:57:38 +0800
commite1bb6848976c7a54baa19e3e61f9aeeb58f55f5a (patch)
treeffe4d5b04f3cbddd98ef1c1f190e397c749741c3 /docs/bugs.json
parent8f0c2a46db787de166f7bcaed2180fcab9248d12 (diff)
downloaddexon-solidity-e1bb6848976c7a54baa19e3e61f9aeeb58f55f5a.tar.gz
dexon-solidity-e1bb6848976c7a54baa19e3e61f9aeeb58f55f5a.tar.zst
dexon-solidity-e1bb6848976c7a54baa19e3e61f9aeeb58f55f5a.zip
Bugfix entry regarding nested arrays returned by library functions
Diffstat (limited to 'docs/bugs.json')
-rw-r--r--docs/bugs.json8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/bugs.json b/docs/bugs.json
index b464be18..cec6a5cd 100644
--- a/docs/bugs.json
+++ b/docs/bugs.json
@@ -1,4 +1,12 @@
[
+ {
+ "name": "PublicLibFunctionsDoNotReturnNestedArrays",
+ "summary": "Calls to public library functions (internal functions are safe) that return nested arrays return only zeroes.",
+ "description": "The compiler does not complain about public library functions (internal functions are safe) returning nested arrays, but it also does not return it correctly. Thus, the function caller receives only zeroes.",
+ "introduced": "0.4.11",
+ "fixed": "0.4.22",
+ "severity": "low"
+ },
{
"name": "OneOfTwoConstructorsSkipped",
"summary": "If a contract has both a new-style constructor (using the constructor keyword) and an old-style constructor (a function with the same name as the contract) at the same time, one of them will be ignored.",