From: Alan Dunn Date: Tue, 15 Mar 2016 00:40:47 +0000 (-0700) Subject: In GRUB2 parser save_env, treat unset variable value as empty X-Git-Tag: v1.0.0~10 X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=6e5cd61065181460be8152a73dfc79f94ecd27fe In GRUB2 parser save_env, treat unset variable value as empty It seems better to treat unset variable values as empty rather than crashing in save_env. While GRUB's behavior is actually to delete the variable from the environment block, it seems useful to at least not crash while later on someone can do further work to improve GRUB compatibility if desired. Tested: Modified test-grub2-save-env to cover this case. Signed-off-by: Alan Dunn Signed-off-by: Sam Mendoza-Jonas --- diff --git a/discover/grub2/env.c b/discover/grub2/env.c index 3598927..7eda095 100644 --- a/discover/grub2/env.c +++ b/discover/grub2/env.c @@ -257,6 +257,10 @@ int builtin_save_env(struct grub2_script *script, name = argv[i]; value = script_env_get(script, name); + if (!value) { + pb_log("Saved unset environment variable %s!\n", name); + value = ""; + } update_env(buf + siglen, len - siglen, name, value); } diff --git a/test/parser/test-grub2-save-env.c b/test/parser/test-grub2-save-env.c index 68e91bd..36725e2 100644 --- a/test/parser/test-grub2-save-env.c +++ b/test/parser/test-grub2-save-env.c @@ -74,6 +74,12 @@ struct env_test { "a=xxx\nsave_env a\n", "q=q\na=x\nr=r\n#", }, + { + "unset-var", + "##############", + "save_env an_unset_var\n", + "an_unset_var=\n" + } }; static void run_env_test(struct parser_test *test, struct env_test *envtest)