forked from cerc-io/plugeth
Length check on get
This commit is contained in:
parent
80ffe1610c
commit
933aa63b7d
@ -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) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user