Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
binwalk
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-gitdep
binwalk
Commits
72c5bf01
Commit
72c5bf01
authored
Jan 29, 2019
by
Logan Rodie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issue with next_target_file being unicode and causing an exception
parent
720f770e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
module.py
src/binwalk/core/module.py
+1
-1
No files found.
src/binwalk/core/module.py
View file @
72c5bf01
...
...
@@ -415,7 +415,7 @@ class Module(object):
# Values in self.target_file_list are either already open files (BlockFile instances), or paths
# to files that need to be opened for scanning.
if
isinstance
(
next_target_file
,
str
):
if
isinstance
(
next_target_file
,
str
)
or
isinstance
(
next_target_file
,
unicode
)
:
fp
=
self
.
config
.
open_file
(
next_target_file
)
else
:
fp
=
next_target_file
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment