Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions qiling/os/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,7 @@ def unmap_all(self):
"""

for begin, end, _ in self.ql.uc.mem_regions():
if begin and end:
self.unmap(begin, end - begin + 1)
self.unmap(begin, end - begin + 1)

def is_available(self, addr: int, size: int) -> bool:
"""Query whether the memory range starting at `addr` and is of length of `size` bytes
Expand Down