Skip to content

Commit

Permalink
Automagic: Fixes #1417
Browse files Browse the repository at this point in the history
  • Loading branch information
ikelos committed Dec 17, 2024
1 parent 246d19c commit c45beb3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions volatility3/framework/automagic/symbol_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,13 @@ def update(self, progress_callback=None):
This also updates remote locations based on a cache timeout.
"""
if progress_callback is None:

def dummy_progress(*args, **kargs) -> None:
return None

progress_callback = dummy_progress

on_disk_locations = set(
[
filename
Expand Down

0 comments on commit c45beb3

Please sign in to comment.