diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-06-04 18:31:18 +0800 |
---|---|---|
committer | Leonardo Alt <leo@ethereum.org> | 2018-06-26 16:27:48 +0800 |
commit | 7763d21cc6181204b1454437b051ac56d3e89339 (patch) | |
tree | 3e91f603daf0091688e32f915d88281783986fa1 /Changelog.md | |
parent | 4be9dc430452ca73ffb07f987f27fb6ccf4ac848 (diff) | |
download | dexon-solidity-7763d21cc6181204b1454437b051ac56d3e89339.tar.gz dexon-solidity-7763d21cc6181204b1454437b051ac56d3e89339.tar.zst dexon-solidity-7763d21cc6181204b1454437b051ac56d3e89339.zip |
Revert if calldata is too short or points out of bounds
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index 1e9b2787..df0efbd5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,6 +3,7 @@ Breaking Changes: * ABI Encoder: Properly pad data from calldata (``msg.data`` and external function parameters). Use ``abi.encodePacked`` for unpadded encoding. * Code Generator: Signed right shift uses proper arithmetic shift, i.e. rounding towards negative infinity. Warning: this may silently change the semantics of existing code! + * Code Generator: Revert at runtime if calldata is too short or points out of bounds. This is done inside the ``ABI decoder`` and therefore also applies to ``abi.decode()``. * Commandline interface: Remove obsolete ``--formal`` option. * Commandline interface: Rename the ``--julia`` option to ``--yul``. * Commandline interface: Require ``-`` if standard input is used as source. |