aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/lib/src/xcms/StCols.c
diff options
context:
space:
mode:
Diffstat (limited to 'nx-X11/lib/src/xcms/StCols.c')
-rw-r--r--nx-X11/lib/src/xcms/StCols.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/nx-X11/lib/src/xcms/StCols.c b/nx-X11/lib/src/xcms/StCols.c
index 42a29cd7f..22d6a10bc 100644
--- a/nx-X11/lib/src/xcms/StCols.c
+++ b/nx-X11/lib/src/xcms/StCols.c
@@ -38,6 +38,7 @@
#include "Xlibint.h"
#include "Xcmsint.h"
#include "Cv.h"
+#include "reallocarray.h"
/************************************************************************
@@ -85,7 +86,9 @@ XcmsStoreColors(
* overwrite the contents.
*/
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;
}