* grub-core/commands/loadenv.c (grub_cmd_save_env): Remove unset

variables.
This commit is contained in:
Vladimir Serbinenko 2013-11-03 06:17:31 +01:00
parent 6cd660435e
commit 5ade4a4248
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2013-11-03 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/commands/loadenv.c (grub_cmd_save_env): Remove unset
variables.
2013-11-03 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/gettext/gettext.c (grub_gettext_init_ext): Ignore errors

View File

@ -432,6 +432,8 @@ grub_cmd_save_env (grub_extcmd_context_t ctxt, int argc, char **args)
goto fail;
}
}
else
grub_envblk_delete (envblk, args[0]);
argc--;
args++;