diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/libutil/http.c | 2 | ||||
-rw-r--r-- | 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 7fe64d828..189d34b90 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 4efd71231..9a5f316cc 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 (); } |