Commit 933aa63b authored by obscuren's avatar obscuren

Length check on get

parent 80ffe161
...@@ -2,7 +2,7 @@ package ethchain ...@@ -2,7 +2,7 @@ package ethchain
import ( import (
"fmt" "fmt"
_ "github.com/ethereum/eth-go/ethutil" "math"
"math/big" "math/big"
) )
...@@ -118,7 +118,13 @@ func (m *Memory) Resize(size uint64) { ...@@ -118,7 +118,13 @@ func (m *Memory) Resize(size uint64) {
} }
func (m *Memory) Get(offset, size int64) []byte { func (m *Memory) Get(offset, size int64) []byte {
return m.store[offset : offset+size] if len(m.store) > int(offset) {
end := int(math.Min(float64(len(m.store)), float64(offset+size)))
return m.store[offset:end]
}
return nil
} }
func (m *Memory) Len() int { func (m *Memory) Len() int {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment