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
+1 -1
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) }
{