main: Fix an uninitialized variable

This commit is contained in:
Colin Walters 2013-07-24 09:36:51 -04:00
parent 688d8f176b
commit 1e7c0bb70b
1 changed files with 1 additions and 1 deletions

View File

@ -656,7 +656,7 @@ static char *
get_ostree_kernel_arg_from_config (OtConfigParser *config) get_ostree_kernel_arg_from_config (OtConfigParser *config)
{ {
const char *options; const char *options;
char *ret; char *ret = NULL;
char **opts, **iter; char **opts, **iter;
options = ot_config_parser_get (config, "options"); options = ot_config_parser_get (config, "options");