aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/lib/src/xcms/CvCols.c
diff options
context:
space:
mode:
Diffstat (limited to 'nx-X11/lib/src/xcms/CvCols.c')
-rw-r--r--nx-X11/lib/src/xcms/CvCols.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/nx-X11/lib/src/xcms/CvCols.c b/nx-X11/lib/src/xcms/CvCols.c
index 87d49311c..00bf8b242 100644
--- a/nx-X11/lib/src/xcms/CvCols.c
+++ b/nx-X11/lib/src/xcms/CvCols.c
@@ -39,6 +39,7 @@
#include "Xlibint.h"
#include "Xcmsint.h"
#include "Cv.h"
+#include "reallocarray.h"
/*
* LOCAL DEFINES
@@ -796,7 +797,9 @@ XcmsConvertColors(
* Make copy of array of color specifications
*/
if (nColors > 1) {
- pColors_tmp = Xmalloc(nColors * sizeof(XcmsColor));
+ pColors_tmp = Xmallocarray(nColors, sizeof(XcmsColor));
+ if (pColors_tmp == NULL)
+ return(XcmsFailure);
} else {
pColors_tmp = &Color1;
}