do not check for NULL in FREE macro
free(3) is safe to invoke on a NULL pointer, in which case no action is taken. This change adjusts the FREE macros to omit this unnecessary check.
This commit is contained in:
parent
362cbe6c5f
commit
865bd462b4
|
@ -60,10 +60,8 @@
|
||||||
|
|
||||||
#define FREE(pointer) \
|
#define FREE(pointer) \
|
||||||
do { \
|
do { \
|
||||||
if (pointer != NULL) { \
|
|
||||||
free(pointer); \
|
free(pointer); \
|
||||||
pointer = NULL; \
|
pointer = NULL; \
|
||||||
} \
|
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#include "xcb.h"
|
#include "xcb.h"
|
||||||
|
|
|
@ -7,10 +7,8 @@
|
||||||
#define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
|
#define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
|
||||||
#define FREE(pointer) \
|
#define FREE(pointer) \
|
||||||
do { \
|
do { \
|
||||||
if (pointer != NULL) { \
|
|
||||||
free(pointer); \
|
free(pointer); \
|
||||||
pointer = NULL; \
|
pointer = NULL; \
|
||||||
} \
|
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
extern xcb_window_t root;
|
extern xcb_window_t root;
|
||||||
|
|
|
@ -7,10 +7,8 @@
|
||||||
#define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
|
#define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
|
||||||
#define FREE(pointer) \
|
#define FREE(pointer) \
|
||||||
do { \
|
do { \
|
||||||
if (pointer != NULL) { \
|
|
||||||
free(pointer); \
|
free(pointer); \
|
||||||
pointer = NULL; \
|
pointer = NULL; \
|
||||||
} \
|
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#define xmacro(atom) xcb_atom_t A_##atom;
|
#define xmacro(atom) xcb_atom_t A_##atom;
|
||||||
|
|
|
@ -22,10 +22,8 @@
|
||||||
/* Securely free p */
|
/* Securely free p */
|
||||||
#define FREE(p) \
|
#define FREE(p) \
|
||||||
do { \
|
do { \
|
||||||
if (p != NULL) { \
|
|
||||||
free(p); \
|
free(p); \
|
||||||
p = NULL; \
|
p = NULL; \
|
||||||
} \
|
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
/* Securely free single-linked list */
|
/* Securely free single-linked list */
|
||||||
|
|
|
@ -49,10 +49,8 @@
|
||||||
|
|
||||||
#define FREE(pointer) \
|
#define FREE(pointer) \
|
||||||
do { \
|
do { \
|
||||||
if (pointer != NULL) { \
|
|
||||||
free(pointer); \
|
free(pointer); \
|
||||||
pointer = NULL; \
|
pointer = NULL; \
|
||||||
} \
|
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#define CALL(obj, member, ...) obj->member(obj, ##__VA_ARGS__)
|
#define CALL(obj, member, ...) obj->member(obj, ##__VA_ARGS__)
|
||||||
|
|
Loading…
Reference in New Issue