Commit 5d6d6df3 authored by longpanda's avatar longpanda
Browse files

autosel doesn't work since 1.0.77 (#1716)

parent 096cc99c
...@@ -3642,7 +3642,7 @@ static grub_err_t ventoy_cmd_sel_auto_install(grub_extcmd_context_t ctxt, int ar ...@@ -3642,7 +3642,7 @@ static grub_err_t ventoy_cmd_sel_auto_install(grub_extcmd_context_t ctxt, int ar
{ {
node->cursel = node->autosel - 1; node->cursel = node->autosel - 1;
debug("Auto install template auto select %d\n", node->autosel); debug("Auto install template auto select %d\n", node->autosel);
return 0; goto load;
} }
} }
...@@ -3682,6 +3682,7 @@ static grub_err_t ventoy_cmd_sel_auto_install(grub_extcmd_context_t ctxt, int ar ...@@ -3682,6 +3682,7 @@ static grub_err_t ventoy_cmd_sel_auto_install(grub_extcmd_context_t ctxt, int ar
node->cursel = g_ventoy_last_entry - 1; node->cursel = g_ventoy_last_entry - 1;
load:
grub_check_free(node->filebuf); grub_check_free(node->filebuf);
node->filelen = 0; node->filelen = 0;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment