Skip to content

Commit 976269d

Browse files
committed
Fixes
1 parent afcf3dd commit 976269d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

dissect/database/ese/ntds/query.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ def _process_or_operation(self, filter: SearchFilter, records: Iterator[Record]
124124
Yields:
125125
Records matching any condition in the OR operation.
126126
"""
127+
records = list(records) if records is not None else None
127128
for child in filter.children:
128129
yield from self._process_query(child, records=records)
129130

0 commit comments

Comments
 (0)