aboutsummaryrefslogtreecommitdiff
path: root/X11/Xlibint.h
diff options
context:
space:
mode:
Diffstat (limited to 'X11/Xlibint.h')
-rw-r--r--X11/Xlibint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/X11/Xlibint.h b/X11/Xlibint.h
index 2bd83a357..78d459e6d 100644
--- a/X11/Xlibint.h
+++ b/X11/Xlibint.h
@@ -336,7 +336,7 @@ extern LockInfoPtr _Xglobal_lock;
* define MALLOC_0_RETURNS_NULL. This is necessary because some
* Xlib code expects malloc(0) to return a valid pointer to storage.
*/
-#ifdef MALLOC_0_RETURNS_NULL
+#if defined(MALLOC_0_RETURNS_NULL) || defined(__clang_analyzer__)
# define Xmalloc(size) malloc(((size) == 0 ? 1 : (size)))
# define Xrealloc(ptr, size) realloc((ptr), ((size) == 0 ? 1 : (size)))