Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit 5c55db6

Browse files
authored
Optimize header check when reading records (#27)
1 parent 67b1aaf commit 5c55db6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dissect/esedb/record.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def get(self, column: Column, raw: bool = False) -> RecordValue:
166166
value = None
167167
tag_field = None
168168

169-
if not self.header:
169+
if self.header is None:
170170
return value
171171

172172
if column.is_fixed:

0 commit comments

Comments
 (0)