Skip to content

Commit

Permalink
Only catch Exceptions instead of everything
Browse files Browse the repository at this point in the history
Co-authored-by: Arusekk <arek_koz@o2.pl>
  • Loading branch information
peace-maker and Arusekk committed Jul 10, 2023
1 parent ed40df2 commit 0edb82c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pwnlib/libcdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def download_libraries(libc_path, unstrip=True):
try:
if unstrip:
unstrip_libc(libc_path)
except:
except Exception:
pass

return cache_dir
Expand Down

0 comments on commit 0edb82c

Please sign in to comment.