We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 41c7bca + eac564a commit 0a2201dCopy full SHA for 0a2201d
trsfile/engine/trs.py
@@ -533,6 +533,8 @@ def __read_headers(self) -> None:
533
534
if (tag_length & 0x80) != 0:
535
tag_length = int.from_bytes(self.handle.read(tag_length & 0x7F), 'little')
536
+ if tag_length == 0 and tag != Header.TRACE_BLOCK.value:
537
+ continue
538
539
# Obtain the Value
540
tag_value_index = self.handle.tell()
0 commit comments