Skip to content

Commit

Permalink
[BUGFIX] Allow to load extended tags
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Jul 31, 2018
1 parent 39ea2f8 commit 440ad98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ifl.py
Original file line number Diff line number Diff line change
Expand Up @@ -854,9 +854,9 @@ def _loadFunctionsNames(self, file_name, ext):
for line in f.readlines():
line = line.strip()
fn = line.split(delim)
if len(fn) != 2:
if len(fn) < 2:
fn = line.split(delim2) # try old delimiter
if len(fn) != 2:
if len(fn) < 2:
continue
start = int(fn[0].strip(), 16)
func_name = fn[1].strip()
Expand Down

0 comments on commit 440ad98

Please sign in to comment.