diff options
Diffstat (limited to 'libX11/src/FSWrap.c')
-rw-r--r-- | libX11/src/FSWrap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libX11/src/FSWrap.c b/libX11/src/FSWrap.c index c9c3867c1..f1629323c 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 */
|