We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/devttys0/ida/blob/8b94e920b1d971808fa4ebcb84b0b120677be320/scripts/wpsearch.py#L58
find_imm in IDA 7.0+ API expects the third argument (value to search) as a uval_t instead of sval_t. FindImmediate can take immediate without getting its two's complement.
find_imm
value
uval_t
sval_t
FindImmediate
immediate
Change the line to (ea, n) = idc.FindImmediate(ea, idc.SEARCH_DOWN, immediate)
(ea, n) = idc.FindImmediate(ea, idc.SEARCH_DOWN, immediate)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/devttys0/ida/blob/8b94e920b1d971808fa4ebcb84b0b120677be320/scripts/wpsearch.py#L58
find_imm
in IDA 7.0+ API expects the third argument (value
to search) as auval_t
instead ofsval_t
.FindImmediate
can takeimmediate
without getting its two's complement.Change the line to
(ea, n) = idc.FindImmediate(ea, idc.SEARCH_DOWN, immediate)
The text was updated successfully, but these errors were encountered: