]> source.dussan.org Git - rspamd.git/commitdiff
[Fix] Allocate ids array in case of hyperscan
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 17 Mar 2016 10:14:30 +0000 (10:14 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 17 Mar 2016 10:14:30 +0000 (10:14 +0000)
src/libutil/map.c

index ffb426ea08427b271a6ad209a109d2b284dab7ec..b40d27bd0a59eedeff581064ba4e49dcdeb197cf 100644 (file)
@@ -1551,6 +1551,7 @@ rspamd_re_map_finalize (struct rspamd_regexp_map *re_map)
 
        re_map->patterns = g_new (const gchar *, re_map->regexps->len);
        re_map->flags = g_new (gint, re_map->regexps->len);
+       re_map->ids = g_new (gint, re_map->regexps->len);
 
        for (i = 0; i < re_map->regexps->len; i ++) {
                re = g_ptr_array_index (re_map->regexps, i);