aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/lib/src/LiICmaps.c
diff options
context:
space:
mode:
Diffstat (limited to 'nx-X11/lib/src/LiICmaps.c')
-rw-r--r--nx-X11/lib/src/LiICmaps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nx-X11/lib/src/LiICmaps.c b/nx-X11/lib/src/LiICmaps.c
index 45a2f2fd3..590b1bb07 100644
--- a/nx-X11/lib/src/LiICmaps.c
+++ b/nx-X11/lib/src/LiICmaps.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"
Colormap *XListInstalledColormaps(
register Display *dpy,
@@ -50,8 +51,7 @@ Colormap *XListInstalledColormaps(
}
if (rep.nColormaps) {
- nbytes = rep.nColormaps * sizeof(Colormap);
- cmaps = Xmalloc(nbytes);
+ cmaps = Xmallocarray(rep.nColormaps, sizeof(Colormap));
if (! cmaps) {
_XEatDataWords(dpy, rep.length);
UnlockDisplay(dpy);