From: Keith Packard Date: Sun, 3 Sep 2006 06:09:44 +0000 (-0700) Subject: Using uninitialized (and wrong) variable in FcStrCopyFilename. X-Git-Tag: 2.3.96~4 X-Git-Url: https://git.wh0rd.org/?p=fontconfig.git;a=commitdiff_plain;h=e3b771a63e837b341bbd1e3e7e9c868244506f62 Using uninitialized (and wrong) variable in FcStrCopyFilename. A typo from the change in where filename canonicalization occurs. --- 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);