From 3e3af1dab62cac49c72143dddfbe097b43c2bba2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 17 Nov 2016 15:33:35 +0100 Subject: Add allocate functions with check --- src/utils.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/utils.h') diff --git a/src/utils.h b/src/utils.h index f93992d..f23a9cb 100644 --- a/src/utils.h +++ b/src/utils.h @@ -17,6 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ +#include #ifndef _UTILS_H_ #define _UTILS_H_ @@ -51,4 +52,15 @@ void print_message(const char *file, const int line, enum Verbosity level, const #define ASSERT(CHECK) do { if (!(CHECK)) { printf("Assertion failed on %s:%d\n", __FILE__, __LINE__); } } while(0) +// Secure versions of malloc and calloc. They just wraps malloc and calloc and +// checks return value. Returned NULL causes program to die. +#define smalloc(SIZE) smalloc_internal(__FILE__, __LINE__, SIZE) +#define scalloc(NMEMB, SIZE) scalloc_internal(__FILE__, __LINE__, NMEMB, SIZE) +#define srealloc(PTR, SIZE) srealloc_internal(__FILE__, __LINE__, PTR, SIZE) +#define error_out_of_memmory error_out_of_memmory_internal(__FILE__, __LINE__) +void *smalloc_internal(const char *file, const int line, size_t size); +void *scalloc_internal(const char *file, const int line, size_t nmemb, size_t size); +void *srealloc_internal(const char *file, const int line, void *ptr, size_t size); +void error_out_of_memmory_internal(const char *file, const int line); + #endif /* _UTILS_H_ */ -- cgit v1.2.3