Skip to content

Commit f821ac6

Browse files
committed
Layers: Comment out unused code in AVML
1 parent 8d48faa commit f821ac6

File tree

1 file changed

+1
-1
lines changed
  • volatility3/framework/layers

1 file changed

+1
-1
lines changed

volatility3/framework/layers/avml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def _read_snappy_frames(self, data: bytes, expected_length: int) -> Tuple[
9393
elif frame_type in [0x00, 0x01]:
9494
# CRC + (Un)compressed data
9595
mapped_start = offset + frame_header_len
96-
frame_crc = data[mapped_start: mapped_start + crc_len]
96+
# frame_crc = data[mapped_start: mapped_start + crc_len]
9797
frame_data = data[mapped_start + crc_len: mapped_start + frame_size]
9898
if frame_type == 0x00:
9999
# Compressed data

0 commit comments

Comments
 (0)