diff options
Diffstat (limited to 'common.c')
-rw-r--r-- | common.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -664,6 +664,8 @@ config_item_string (const struct str *s) { struct config_item_ *self = config_item_new (CONFIG_ITEM_STRING); str_init (&self->value.string); + hard_assert (utf8_validate + (self->value.string.str, self->value.string.len)); if (s) str_append_str (&self->value.string, s); return self; } |