X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=src%2Ffcstr.c;h=5faf5790f8ba4e9dd3f1522b0109f16a73e4e8f2;hb=e3b771a63e837b341bbd1e3e7e9c868244506f62;hp=33090140b4fc799a22212470316a8c6742015aca;hpb=04cedae0d5a720662bdc0de3d4cb97f6c77e7d1a;p=fontconfig.git 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);