From: Vsevolod Stakhov Date: Wed, 5 Feb 2020 13:47:31 +0000 (+0000) Subject: [Minor] Fix error path X-Git-Tag: 2.4~101 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a66c2ff0de40276f14586b67cc4afa6ff2f4c11f;p=rspamd.git [Minor] Fix error path --- diff --git a/src/libserver/re_cache.c b/src/libserver/re_cache.c index 72aa7a798..3c6f5f9e5 100644 --- a/src/libserver/re_cache.c +++ b/src/libserver/re_cache.c @@ -2079,12 +2079,12 @@ rspamd_re_cache_compile_timer_cb (EV_P_ ev_timer *w, int revents ) rspamd_re_cache_type_to_string (re_class->type), (gint)g_hash_table_size (re_class->re), path); - unlink (path); - close (fd); - rspamd_re_cache_compile_err (EV_A_ w, err, cbdata); unlink (path); close (fd); + rspamd_re_cache_compile_err (EV_A_ w, err, cbdata); + + return; } /* Continue process */