Array Length mistankingly taken as Offset

The array length was directly taken as an offset without the necessary multiplication with `0x20`.
This commit is contained in:
ritzdorf 2018-05-28 02:25:13 +02:00 committed by GitHub
parent f5f1bec759
commit fb08030a07
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) }
{