Fix regression on 32bit (windows) systems

This commit is contained in:
Maran 2014-07-21 14:35:37 +02:00
parent 5d2669dbd3
commit 6774ddaba2
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])