You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# A request can span multiple blocks, so we use modulo.
file_offset = file_object.get_offset() - offset
_, remainder = divmod(file_offset, block_size)
# Move reader to next candidate block. Include the null-byte skipped above.
file_object.seek(block_size - remainder, os.SEEK_CUR)
does not account for a remainder of 0
The text was updated successfully, but these errors were encountered:
https://github.com/log2timeline/plaso/blob/master/plaso/parsers/firefox_cache.py#L309
does not account for a remainder of 0
The text was updated successfully, but these errors were encountered: