aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cfg_xml.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cfg_xml.c b/src/cfg_xml.c
index 2757fded2..f0ed5309d 100644
--- a/src/cfg_xml.c
+++ b/src/cfg_xml.c
@@ -1270,6 +1270,15 @@ rspamd_xml_text (GMarkupParseContext *context, const gchar *text, gsize text_len
struct rspamd_xml_userdata *ud = user_data;
ucl_object_t *top;
+ while (text_len > 0 && g_ascii_isspace (*text)) {
+ text_len --;
+ text ++;
+ }
+
+ if (text_len == 0) {
+ return;
+ }
+
top = ud->parent_pointer[ud->nested - 1];
ucl_object_insert_key (top, ucl_object_fromstring_common (text, text_len, UCL_STRING_PARSE),
ud->section_name[ud->nested], 0, true);