Skip to content

Commit

Permalink
if choice is None or file does not exist set dwarf_info_applied to False
Browse files Browse the repository at this point in the history
  • Loading branch information
matteyeux authored and ElykDeer committed Mar 26, 2023
1 parent 58fcafe commit 272360a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ def load_symbols_from_file(bv):

if not file_choice.result or not os.path.exists(file_choice.result):
log_error(f"Input file `{file_choice.result}` does not exist")
bv.store_metadata("dwarf_info_applied", False)
return

DWARF_loader(bv, file_choice.result).start()
Expand Down

0 comments on commit 272360a

Please sign in to comment.