From 4875a15ca61358a1c95b156b2279fce092451278 Mon Sep 17 00:00:00 2001 From: Ulrich Sibiller Date: Wed, 19 Jan 2022 00:45:43 +0100 Subject: Update libNX_X11 to upstream's libX11-1.7.3.1-10-gd60ede78 --- nx-X11/lib/src/ListExt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'nx-X11/lib/src/ListExt.c') diff --git a/nx-X11/lib/src/ListExt.c b/nx-X11/lib/src/ListExt.c index a795041d0..69ae53da0 100644 --- a/nx-X11/lib/src/ListExt.c +++ b/nx-X11/lib/src/ListExt.c @@ -28,6 +28,7 @@ in this Software without prior written authorization from The Open Group. #include #endif #include "Xlibint.h" +#include "reallocarray.h" #include char **XListExtensions( @@ -54,7 +55,7 @@ char **XListExtensions( } if (rep.nExtensions) { - list = Xmalloc (rep.nExtensions * sizeof (char *)); + list = Xmallocarray (rep.nExtensions, sizeof (char *)); if (rep.length > 0 && rep.length < (INT_MAX >> 2)) { rlen = rep.length << 2; ch = Xmalloc (rlen + 1); -- cgit v1.2.3