-
-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
retdec.py has same name as retdec module, causing unhandled exception #9
Comments
I am aware of this bug. My intention was to totally replace the |
Probably not :( Super busy until defcon. |
Anyway we shouldn't bother with this plugin anymore, see hugsy/binja-retdec#11 |
We could abandon this, or perhaps add a configuration to point to a specific host, in case the end user is running their own service. |
Closing. |
Repro: Uninstall the
retdec-python
module, start gdb withextra_plugins_dir
set.What'll happen is retdec will
__import__("retdec")
which'll import itself, because the plugin path has been added tosys.path
. This'll cause a failure becauseGenericCommand
doesn't exist in this context.The text was updated successfully, but these errors were encountered: