Commit 8dc62878 by devttys0

Fixed recursive extraction bug

parent 4b45075e
...@@ -356,7 +356,7 @@ class Module(object): ...@@ -356,7 +356,7 @@ class Module(object):
if isinstance(next_target_file, binwalk.core.common.BlockFile): if isinstance(next_target_file, binwalk.core.common.BlockFile):
fp = next_target_file fp = next_target_file
else: else:
fp = self.config.open_file(self.target_file_list.pop(0)) fp = self.config.open_file(next_target_file)
self.status.clear() self.status.clear()
self.status.total = fp.length self.status.total = fp.length
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment