GRUB would crash when getting the following (without quotes) "\RETURN "RETURN
This results in empty args. OTOH having empty first argument is not really a problem (it simply fails to find empty command name). --- grub-core/script/execute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grub-core/script/execute.c b/grub-core/script/execute.c index afd5513..6ef12a0 100644 --- a/grub-core/script/execute.c +++ b/grub-core/script/execute.c @@ -920,7 +920,7 @@ grub_script_execute_cmdline (struct grub_script_cmd *cmd) struct grub_script_argv argv = { 0, 0, 0 }; /* Lookup the command. */ - if (grub_script_arglist_to_argv (cmdline->arglist, &argv) || ! argv.args[0]) + if (grub_script_arglist_to_argv (cmdline->arglist, &argv) || ! argv.args) return grub_errno; invert = 0; -- tg: (5ae584c..) u/zero_args_crash (depends on: master) _______________________________________________ Grub-devel mailing list Grub-devel@gnu.org https://lists.gnu.org/mailman/listinfo/grub-devel