Skip to content

Commit

Permalink
Changes to handle missing values in formatter log2timeline#4754
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Jan 1, 2024
1 parent 02ea3c8 commit cae44e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plaso/output/formatting_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def _FormatValues(
Returns:
str: values field.
"""
values = event_data.values
values = getattr(event_data, 'values', None)
if isinstance(values, list) and event_data.data_type in (
'windows:registry:key_value', 'windows:registry:service'):
values = ' '.join([
Expand Down

0 comments on commit cae44e2

Please sign in to comment.