config: fix string parsing

This commit is contained in:
Přemysl Eric Janouch 2015-05-02 22:49:51 +02:00
parent 1b891ab01b
commit 3b8e8cc97f
1 changed files with 1 additions and 0 deletions

View File

@ -1123,6 +1123,7 @@ config_tokenizer_next (struct config_tokenizer *self, struct error **e)
config_tokenizer_error (self, e, "not a valid UTF-8 string");
return CONFIG_T_ABORT;
}
return CONFIG_T_STRING;
}
char *end;