Skip to content

Commit

Permalink
Changes to use pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Dec 11, 2023
1 parent 33814af commit 1871128
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions plaso/parsers/esedb_plugins/msie_webcache.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,12 +443,10 @@ def ParseContainersTable(
if esedb_table:
self._ParseContainerTable(parser_mediator, esedb_table, container_name)

cookie_table_name = 'CookieEntryEx_{0:d}'.format(container_identifier)
esedb_cookie_table = database.GetTableByName(cookie_table_name)
esedb_cookie_table_name = getattr(esedb_cookie_table, 'name', None)

if esedb_cookie_table_name == cookie_table_name:
self._ParseCookieExTable(parser_mediator, esedb_cookie_table)
table_name = 'CookieEntryEx_{0:d}'.format(container_identifier)
esedb_table = database.GetTableByName(table_name)
if esedb_table:
self._ParseCookieExTable(parser_mediator, esedb_table)

def ParseLeakFilesTable(
self, parser_mediator, database=None, table=None, **unused_kwargs):
Expand Down

0 comments on commit 1871128

Please sign in to comment.