summaryrefslogtreecommitdiff
path: root/src/xcms/StCols.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xcms/StCols.c')
-rw-r--r--src/xcms/StCols.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xcms/StCols.c b/src/xcms/StCols.c
index 42a29cd7..f3df8ed0 100644
--- a/src/xcms/StCols.c
+++ b/src/xcms/StCols.c
@@ -38,6 +38,7 @@
#include "Xlibint.h"
#include "Xcmsint.h"
#include "Cv.h"
+#include "reallocarray.h"
/************************************************************************
@@ -85,7 +86,7 @@ XcmsStoreColors(
* overwrite the contents.
*/
if (nColors > 1) {
- pColors_tmp = Xmalloc(nColors * sizeof(XcmsColor));
+ pColors_tmp = Xmallocarray(nColors, sizeof(XcmsColor));
} else {
pColors_tmp = &Color1;
}