mirror of
https://github.com/radareorg/radare2.git
synced 2025-04-03 01:52:04 +00:00
Fix null deref on main router inside the r2 shell
This commit is contained in:
parent
bd66e06dff
commit
db225c212d
@ -2471,7 +2471,7 @@ static int __runMain(RMainCallback cb, const char *arg) {
|
||||
char *a = r_str_trim_dup (arg);
|
||||
int argc = 0;
|
||||
char **args = r_str_argv (a, &argc);
|
||||
int res = cb (argc, (const char **)args);
|
||||
int res = cb? cb (argc, (const char **)args): -1;
|
||||
free (args);
|
||||
free (a);
|
||||
return res;
|
||||
|
Loading…
x
Reference in New Issue
Block a user