Merge pull request #3058 from d-e-s-o/fix-FREE
do not check for NULL in FREE macro
This commit is contained in:
@ -5,12 +5,10 @@
|
||||
#include <err.h>
|
||||
|
||||
#define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
|
||||
#define FREE(pointer) \
|
||||
do { \
|
||||
if (pointer != NULL) { \
|
||||
free(pointer); \
|
||||
pointer = NULL; \
|
||||
} \
|
||||
#define FREE(pointer) \
|
||||
do { \
|
||||
free(pointer); \
|
||||
pointer = NULL; \
|
||||
} while (0)
|
||||
|
||||
extern xcb_window_t root;
|
||||
|
Reference in New Issue
Block a user