[Fontconfig] fontconfig: Branch 'master'
Akira TAGOH
tagoh at kemper.freedesktop.org
Wed Mar 20 19:58:20 PDT 2013
src/fcpat.c | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit c758206e8c0e5b572bd34183b184ef4361745333
Author: Akira TAGOH <akira at tagoh.org>
Date: Thu Mar 21 11:58:06 2013 +0900
Fix a SIGSEGV on FcPatternGet* with NULL pattern
diff --git a/src/fcpat.c b/src/fcpat.c
index b3b155d..25bff64 100644
--- a/src/fcpat.c
+++ b/src/fcpat.c
@@ -843,6 +843,8 @@ FcPatternObjectGet (const FcPattern *p, FcObject object, int id, FcValue *v)
FcPatternElt *e;
FcValueListPtr l;
+ if (!p)
+ return FcResultNoMatch;
e = FcPatternObjectFindElt (p, object);
if (!e)
return FcResultNoMatch;
More information about the Fontconfig
mailing list