Fix null deref on main router inside the r2 shell

This commit is contained in:
pancake 2022-11-25 01:51:14 +01:00 committed by pancake
parent bd66e06dff
commit db225c212d

View File

@ -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;