]> source.dussan.org Git - rspamd.git/commitdiff
Fix cache initialization
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 7 Dec 2015 15:06:41 +0000 (15:06 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 7 Dec 2015 15:06:41 +0000 (15:06 +0000)
src/libserver/cfg_utils.c

index 9afbabf60e513867ff880e31aaf30af062e70c64..012cec1c34686eb7beff049810b1d6fafe9b8c3a 100644 (file)
@@ -670,14 +670,14 @@ rspamd_config_post_load (struct rspamd_config *cfg, gboolean validate_cache)
        /* Init config cache */
        rspamd_symbols_cache_init (cfg->cache);
 
+       /* Init re cache */
+       rspamd_re_cache_init (cfg->re_cache);
+
        /* Validate cache */
        if (validate_cache) {
                return rspamd_symbols_cache_validate (cfg->cache, cfg, FALSE);
        }
 
-       /* Init re cache */
-       rspamd_re_cache_init (cfg->re_cache);
-
        return TRUE;
 }