aboutsummaryrefslogtreecommitdiff
path: root/libX11/src/FSWrap.c
diff options
context:
space:
mode:
Diffstat (limited to 'libX11/src/FSWrap.c')
-rw-r--r--libX11/src/FSWrap.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libX11/src/FSWrap.c b/libX11/src/FSWrap.c
index 94d94fbe9..45a2c34e3 100644
--- a/libX11/src/FSWrap.c
+++ b/libX11/src/FSWrap.c
@@ -85,10 +85,9 @@ _XParseBaseFontNameList(
if (!*str)
return (char **)NULL;
- if (!(ptr = Xmalloc((unsigned)strlen(str) + 1))) {
+ if (!(ptr = strdup(str))) {
return (char **)NULL;
}
- strcpy(ptr, str);
psave = ptr;
/* somebody who specifies more than XMAXLIST basefontnames will lose */