diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-03-05 16:36:36 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-03-05 16:36:36 +0000 |
commit | f039ea6f861c29a986d0d6aa7cd863533972d2cf (patch) | |
tree | fe4915cfcb88d033436547ba23185396b975c8cd /src | |
parent | 0f877fcfb368125b91937d041267c71b23e42161 (diff) | |
download | rspamd-f039ea6f861c29a986d0d6aa7cd863533972d2cf.tar.gz rspamd-f039ea6f861c29a986d0d6aa7cd863533972d2cf.zip |
[Minor] Sigh, another libevent stupidity
Diffstat (limited to 'src')
-rw-r--r-- | src/libutil/http_context.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libutil/http_context.c b/src/libutil/http_context.c index a17b86af3..9182285a3 100644 --- a/src/libutil/http_context.c +++ b/src/libutil/http_context.c @@ -51,7 +51,8 @@ rspamd_http_keepalive_queue_cleanup (GQueue *conns) cbd = (struct rspamd_http_keepalive_cbdata *)cur->data; rspamd_http_connection_unref (cbd->conn); - event_del (&cbd->ev); + /* Event is deleted here by deletion of the ev_base */ + /* event_del (&cbd->ev); */ g_free (cbd); cur = cur->next; |