aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/lib/src/ListExt.c
diff options
context:
space:
mode:
Diffstat (limited to 'nx-X11/lib/src/ListExt.c')
-rw-r--r--nx-X11/lib/src/ListExt.c3
1 files changed, 2 insertions, 1 deletions
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 <config.h>
#endif
#include "Xlibint.h"
+#include "reallocarray.h"
#include <limits.h>
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);