Skip to content

Commit

Permalink
Updated plugin core to pass SystemError exceptions up the chain
Browse files Browse the repository at this point in the history
  • Loading branch information
devttys0 committed Oct 27, 2020
1 parent f57a746 commit 83f19df
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/binwalk/core/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ def _call_plugins(self, callback_list, obj=None):
raise e
except IgnoreFileException as e:
raise e
except SystemError as e:
raise e
except Exception as e:
binwalk.core.common.warning("%s.%s failed [%s]: '%s'" % (callback.__module__, callback.__name__, type(e), e))

Expand Down

0 comments on commit 83f19df

Please sign in to comment.