diff options
Diffstat (limited to 'nx-X11/lib/src/PixFormats.c')
-rw-r--r-- | nx-X11/lib/src/PixFormats.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nx-X11/lib/src/PixFormats.c b/nx-X11/lib/src/PixFormats.c index 6d9f64d2c..f9fd3e44a 100644 --- a/nx-X11/lib/src/PixFormats.c +++ b/nx-X11/lib/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; |