diff options
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/map.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libutil/map.c b/src/libutil/map.c index f240e5f84..eaaea4ac0 100644 --- a/src/libutil/map.c +++ b/src/libutil/map.c @@ -1666,6 +1666,11 @@ rspamd_map_add_from_ucl (struct rspamd_config *cfg, goto err; } } + else { + msg_err_config ("map has invalid type for value: %s", + ucl_object_type_to_string (ucl_object_type (obj))); + goto err; + } rspamd_map_calculate_hash (map); msg_info_map ("added map from ucl"); |