mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-28 09:05:51 +00:00
* grub-core/normal/menu_entry.c (run): Make sure we always return
a value.
This commit is contained in:
parent
b031012d70
commit
df7769d8dc
@ -1,3 +1,8 @@
|
||||
2010-09-21 Colin Watson <cjwatson@ubuntu.com>
|
||||
|
||||
* grub-core/normal/menu_entry.c (run): Make sure we always return
|
||||
a value.
|
||||
|
||||
2010-09-21 Colin Watson <cjwatson@ubuntu.com>
|
||||
|
||||
* grub-core/commands/efi/lsefimmap.c (grub_cmd_lsefimmap):
|
||||
|
@ -1207,7 +1207,7 @@ run (struct screen *screen)
|
||||
grub_env_context_open ();
|
||||
menu = grub_zalloc (sizeof (*menu));
|
||||
if (! menu)
|
||||
return;
|
||||
return 0;
|
||||
grub_env_set_menu (menu);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user