Merge branch 'master' into develop

This commit is contained in:
obscuren 2014-07-21 20:23:15 +02:00
commit eab0b2a90a
1 changed files with 1 additions and 1 deletions

View File

@ -506,7 +506,7 @@ func (vm *Vm) RunClosure(closure *Closure) (ret []byte, err error) {
offset := stack.Pop().Int64()
data := make([]byte, 32)
if len(closure.Args) >= int(offset) {
if big.NewInt(int64(len(closure.Args))).Cmp(big.NewInt(offset)) >= 0 {
l := int64(math.Min(float64(offset+32), float64(len(closure.Args))))
copy(data, closure.Args[offset:l])