]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
[Minor] g_abort requires quite a recent glib
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 29 Oct 2018 10:04:39 +0000 (10:04 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 29 Oct 2018 10:04:39 +0000 (10:04 +0000)
src/libutil/http.c
src/libutil/mem_pool.c

index 7fe64d82895d0116624cdd39d5b4a4d48fe80ee1..189d34b90b6d047ce2b4d7ae8cebc8479104b059 100644 (file)
@@ -2186,7 +2186,7 @@ rspamd_http_connection_write_message_common (struct rspamd_http_connection *conn
                }
                else {
                        /* Invalid body for spamc method */
-                       g_abort ();
+                       abort ();
                }
        }
 
index 4efd712315433b95187650168da70758bfed9fa3..9a5f316cca468ecfea1d0e524bff1c8ef0505791 100644 (file)
@@ -470,7 +470,7 @@ memory_pool_alloc_common (rspamd_mempool_t * pool, gsize size,
                return tmp;
        }
 
-       g_abort ();
+       abort ();
 }