Fix returns

This commit is contained in:
Arun Prakash Jana 2021-06-19 01:48:14 +05:30
parent 825effb264
commit 35aa864554
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 5 deletions

View File

@ -4867,16 +4867,14 @@ static bool run_selected_plugin(char **path, const char *file, char *runfile, ch
if (!*file)
return FALSE;
if ((flags & F_NOTRACE) || (flags & F_PAGE)) {
run_cmd_as_plugin(file, runfile, flags);
return TRUE;
}
if ((flags & F_NOTRACE) || (flags & F_PAGE))
return run_cmd_as_plugin(file, runfile, flags);
cmd_as_plugin = TRUE;
}
if (mkfifo(g_pipepath, 0600) != 0)
return EXIT_FAILURE;
return FALSE;
exitcurses();