summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@neko.keithp.com>2006-09-02 23:09:44 -0700
committerKeith Packard <keithp@neko.keithp.com>2006-09-02 23:09:44 -0700
commite3b771a63e837b341bbd1e3e7e9c868244506f62 (patch)
tree57b15bdce9e0d642f702cc91d840132a9dc81dee
parent04cedae0d5a720662bdc0de3d4cb97f6c77e7d1a (diff)
Using uninitialized (and wrong) variable in FcStrCopyFilename.
A typo from the change in where filename canonicalization occurs.
-rw-r--r--src/fcstr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fcstr.c b/src/fcstr.c
index 3309014..5faf579 100644
--- a/src/fcstr.c
+++ b/src/fcstr.c
@@ -770,7 +770,7 @@ FcStrCopyFilename (const FcChar8 *s)
return 0;
size = strlen ((char *) home) + strlen ((char *) s);
full = (FcChar8 *) malloc (size);
- if (!new)
+ if (!full)
return 0;
strcpy ((char *) full, (char *) home);
strcat ((char *) full, (char *) s + 1);