diff --git a/gef.py b/gef.py index 002736c93..9b0dd4b73 100644 --- a/gef.py +++ b/gef.py @@ -10741,7 +10741,7 @@ def read_cstring(self, res_bytes = b"" while len(res_bytes) < length: try: - # Calculate how much bytes there is until next page + # Calculate how many bytes there are until next page next_page = current_address + DEFAULT_PAGE_SIZE page_mask = ~(DEFAULT_PAGE_SIZE - 1) size = (next_page & page_mask) - current_address