]> git.ozlabs.org Git - petitboot/blobdiff - discover/kboot-parser.c
Fix seg fault with bare kboot.conf variables
[petitboot] / discover / kboot-parser.c
index 7c7cb5d0aa08f645c81ac12f0d441f44672c9ce5..429ae096ddccc0573056052243e80faaf85de2e4 100644 (file)
@@ -21,6 +21,11 @@ static void kboot_process_pair(struct conf_context *conf, const char *name,
        const char *root;
        struct boot_option *opt;
 
+       /* fixup for bare values */
+
+       if (!name)
+               return;
+
        if (conf_param_in_list(ignored_names, name))
                return;