You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in libr/core/anal.c, when command "adf" has no or wrong argument, anal_fcn_data (core, input + 1) --> RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, core->offset, -1);
returns null pointer for fnc cause segmentation fault later in ensure_fcn_range (fcn);
The text was updated successfully, but these errors were encountered:
On 14 Mar 2020, at 08:55, aar0nge ***@***.***> wrote:
Work environment
Questions Answers
OS/arch/bits (mandatory) Ubuntu x86 64
File format of the file you reverse (mandatory) ELF
Architecture/bits of the file (mandatory) x86/64
r2 -v full output, not truncated (mandatory) radare2 4.3.1 23928 @ linux-x86-64 git.4.3.1-10-g1271d65 commit: 1271d65 build: 2020-03-11__10:01:54
Expected behavior
Handle input error
Actual behavior
Segmentation fault
Steps to reproduce the behavior
$ r2 -
[0x00000000]> adf
Segmentation fault (core dumped)
Additional Logs, screenshots, source-code, configuration dump, ...
in libr/core/anal.c, when command "adf" has no or wrong argument,
anal_fcn_data (core, input + 1)-->RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, core->offset, -1); returns null pointer forfnccause segmentation fault later inensure_fcn_range (fcn);`
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
Work environment
Expected behavior
Handle input error
Actual behavior
Segmentation fault
Steps to reproduce the behavior
$ r2 -
[0x00000000]> adf
Segmentation fault (core dumped)
Additional Logs, screenshots, source-code, configuration dump, ...
in
libr/core/anal.c
, when command "adf" has no or wrong argument,anal_fcn_data (core, input + 1)
-->RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, core->offset, -1);
returns null pointer for
fnc
cause segmentation fault later inensure_fcn_range (fcn);
The text was updated successfully, but these errors were encountered: