summaryrefslogtreecommitdiff
path: root/src/Converters.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2023-03-03 17:42:47 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-03-07 00:06:24 +0000
commitb3b0c1ad25a5d0f628eddd00113a40364d68480b (patch)
tree7b1088ab3cc984dd606df1b56fdda7dec975432f /src/Converters.c
parentb1b54c50d0e5851d72c1e7aff4057687be2e447e (diff)
Replace XtMalloc() calls with XtMallocArray()
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/Converters.c')
-rw-r--r--src/Converters.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Converters.c b/src/Converters.c
index 97f1ce5..f34aef2 100644
--- a/src/Converters.c
+++ b/src/Converters.c
@@ -1719,8 +1719,8 @@ XtCvtStringToCommandArgArray(Display *dpy,
dst++;
}
- ptr = strarray = (String *)
- __XtMalloc((Cardinal) ((size_t) (tokens + 1) * sizeof(String)));
+ ptr = strarray = XtMallocArray((Cardinal) tokens + 1,
+ (Cardinal) sizeof(String));
src = dst_str;
while (--tokens >= 0) {
*ptr = src;