From bc5f1a7da43fb07b664e64ca235d63452d525472 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Wed, 23 Nov 2016 17:58:04 +0100 Subject: [PATCH] lib: Use abort() instead of exit() when smalloc fails. --- lib/utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils.h b/lib/utils.h index 4fdde3c..658eea2 100644 --- a/lib/utils.h +++ b/lib/utils.h @@ -8,8 +8,8 @@ #define max(a, b) (((b) > (a))?(b):(a)) #define min(a, b) (((b) < (a))?(b):(a)) -#define smalloc(size) ({void *__result__; ((__result__ = malloc(size)) == NULL)?({exit(-1); (void *)0;}):__result__;}) -#define srealloc(ptr, size) ({void *__result__; ((__result__ = realloc((ptr), (size))) == NULL)?({exit(-1); (void *)0;}):__result__;}) +#define smalloc(size) ({void *__result__; ((__result__ = malloc(size)) == NULL)?({abort(); (void *)0;}):__result__;}) +#define srealloc(ptr, size) ({void *__result__; ((__result__ = realloc((ptr), (size))) == NULL)?({abort(); (void *)0;}):__result__;}) #define szmalloc(size) memset(smalloc(size), 0, size) #define sstrdup(str) ({const char *__strbuf__ = (str); strcpy(smalloc(strlen(__strbuf__) + 1), __strbuf__);}) #define omalloc(o) ((o) = szmalloc(sizeof(*(o)))) -- 2.11.0