From 07d33d22fcc65609a2c31c516604bda6e615bf72 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Sun, 5 Mar 2006 01:19:41 +0000 Subject: [PATCH] used xmalloc instead of malloc [r7415] --- ir/adt/bitset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/adt/bitset.h b/ir/adt/bitset.h index ae9d8a485..ad920a840 100644 --- a/ir/adt/bitset.h +++ b/ir/adt/bitset.h @@ -109,7 +109,7 @@ static INLINE bitset_t *_bitset_mask_highest(bitset_t *bs) * @return A pointer to an empty initialized bitset. */ #define bitset_malloc(size) \ - _bitset_prepare(malloc(_bitset_overall_size(sizeof(bitset_t), size)), size) + _bitset_prepare(xmalloc(_bitset_overall_size(sizeof(bitset_t), size)), size) /** * Free a bitset allocated with bitset_malloc(). -- 2.20.1