This commit is contained in:
William Ballenthin
2020-07-23 10:52:02 -06:00
parent 4383a1c91c
commit abaab423c4

View File

@@ -193,7 +193,7 @@ def read_memory(vw, va, size):
if va >= mva and va < mmaxva:
mva, msize, mperms, mfname = mmap
offset = va - mva
return mbytes[offset:offset+size]
return mbytes[offset : offset + size]
raise envi.SegmentationViolation(va)