diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-03-18 17:49:38 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-03-18 17:49:38 +0000 |
commit | e2ff03403bc58f032a8081a81e22c78fd7e1f250 (patch) | |
tree | 406447cba68ecda47bd7ecfc0cc62c4b458520a6 /src | |
parent | 38084c8092801072bbe9d56228f9e42acadf90fc (diff) | |
download | rspamd-e2ff03403bc58f032a8081a81e22c78fd7e1f250.tar.gz rspamd-e2ff03403bc58f032a8081a81e22c78fd7e1f250.zip |
[Minor] Another 'oops'
Diffstat (limited to 'src')
-rw-r--r-- | src/libutil/http_connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/http_connection.c b/src/libutil/http_connection.c index 72cc1d239..a0623dca9 100644 --- a/src/libutil/http_connection.c +++ b/src/libutil/http_connection.c @@ -1093,7 +1093,7 @@ rspamd_http_connection_new_common (struct rspamd_http_context *ctx, struct rspamd_http_connection *conn; struct rspamd_http_connection_private *priv; - g_assert (error_handler != NULL && finish_handler == NULL); + g_assert (error_handler != NULL && finish_handler != NULL); conn = g_malloc0 (sizeof (struct rspamd_http_connection)); conn->opts = opts; |