From c16f6393333532ceeb65fdc7f62efbc14a987329 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 29 Oct 2018 10:04:39 +0000 Subject: [PATCH] [Minor] g_abort requires quite a recent glib --- src/libutil/http.c | 2 +- src/libutil/mem_pool.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libutil/http.c b/src/libutil/http.c index 7fe64d8289..189d34b90b 100644 --- a/src/libutil/http.c +++ b/src/libutil/http.c @@ -2186,7 +2186,7 @@ rspamd_http_connection_write_message_common (struct rspamd_http_connection *conn } else { /* Invalid body for spamc method */ - g_abort (); + abort (); } } diff --git a/src/libutil/mem_pool.c b/src/libutil/mem_pool.c index 4efd712315..9a5f316cca 100644 --- a/src/libutil/mem_pool.c +++ b/src/libutil/mem_pool.c @@ -470,7 +470,7 @@ memory_pool_alloc_common (rspamd_mempool_t * pool, gsize size, return tmp; } - g_abort (); + abort (); } -- 2.47.3