diff options
Diffstat (limited to 'dix')
-rw-r--r-- | dix/dixfonts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dix/dixfonts.c b/dix/dixfonts.c index 6c90fb9d2..b51ad841f 100644 --- a/dix/dixfonts.c +++ b/dix/dixfonts.c @@ -1836,7 +1836,7 @@ SetDefaultFontPath(char *path) if (!start) { temp_path = Xprintf("%s%sbuilt-ins", path, *path ? "," : ""); } else { - temp_path = xstrdup(path); + temp_path = strdup(path); } if (!temp_path) return BadAlloc; |