summaryrefslogtreecommitdiff
path: root/src/ListExt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ListExt.c')
-rw-r--r--src/ListExt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ListExt.c b/src/ListExt.c
index a795041d..69ae53da 100644
--- a/src/ListExt.c
+++ b/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);