main: Fix an uninitialized variable
This commit is contained in:
parent
688d8f176b
commit
1e7c0bb70b
|
|
@ -656,7 +656,7 @@ static char *
|
|||
get_ostree_kernel_arg_from_config (OtConfigParser *config)
|
||||
{
|
||||
const char *options;
|
||||
char *ret;
|
||||
char *ret = NULL;
|
||||
char **opts, **iter;
|
||||
|
||||
options = ot_config_parser_get (config, "options");
|
||||
|
|
|
|||
Loading…
Reference in New Issue