Merge pull request #4194 from ritzdorf/patch-1

Array Length mistankingly taken as Offset
This commit is contained in:
chriseth 2018-05-28 09:15:03 +02:00 committed by GitHub
commit 0c223b037f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,7 +115,7 @@ you really know what you are doing.
// Iterate until the bound is not met.
for
{ let end := add(data, len) }
{ let end := add(data, mul(len, 0x20)) }
lt(data, end)
{ data := add(data, 0x20) }
{