aboutsummaryrefslogtreecommitdiffstats
path: root/vm/stack.go
diff options
context:
space:
mode:
Diffstat (limited to 'vm/stack.go')
-rw-r--r--vm/stack.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/vm/stack.go b/vm/stack.go
index f20470db3..e31f3eb57 100644
--- a/vm/stack.go
+++ b/vm/stack.go
@@ -142,6 +142,10 @@ func (m *Memory) Resize(size uint64) {
}
func (m *Memory) Get(offset, size int64) []byte {
+ if size == 0 {
+ return nil
+ }
+
if len(m.store) > int(offset) {
end := int(math.Min(float64(len(m.store)), float64(offset+size)))