summaryrefslogtreecommitdiff
path: root/src/PixFormats.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/PixFormats.c')
-rw-r--r--src/PixFormats.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/PixFormats.c b/src/PixFormats.c
index 6d9f64d2..f9fd3e44 100644
--- a/src/PixFormats.c
+++ b/src/PixFormats.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 <stdio.h>
/*
@@ -39,7 +40,7 @@ XPixmapFormatValues *XListPixmapFormats (
int *count) /* RETURN */
{
XPixmapFormatValues *formats =
- Xmalloc(dpy->nformats * sizeof (XPixmapFormatValues));
+ Xmallocarray(dpy->nformats, sizeof (XPixmapFormatValues));
if (formats) {
register int i;