diff options
Diffstat (limited to 'src/cfg_xml.c')
-rw-r--r-- | src/cfg_xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cfg_xml.c b/src/cfg_xml.c index 0f9bff97e..43c4091d1 100644 --- a/src/cfg_xml.c +++ b/src/cfg_xml.c @@ -1171,7 +1171,7 @@ xml_handle_string_list (struct config_file *cfg, struct rspamd_xml_userdata *ctx dest = (GList **)G_STRUCT_MEMBER_P (dest_struct, offset); *dest = NULL; - tokens = g_strsplit (data, ";,", 0); + tokens = g_strsplit_set (data, ";,", 0); if (!tokens || !tokens[0]) { return FALSE; } |