From: Keith Packard Date: Wed, 7 Aug 2002 01:45:59 +0000 (+0000) Subject: Short circuit FcPatternEqual when both args point at the same pattern X-Git-Tag: fcpackage_rc2~4 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=bd724c85969f7c24cf17b8780217c5a428555ea4;p=fontconfig.git Short circuit FcPatternEqual when both args point at the same pattern --- diff --git a/src/fcpat.c b/src/fcpat.c index 807b9fb..62d779b 100644 --- a/src/fcpat.c +++ b/src/fcpat.c @@ -1,5 +1,5 @@ /* - * $XFree86: xc/lib/fontconfig/src/fcpat.c,v 1.10 2002/06/29 20:31:02 keithp Exp $ + * $XFree86: xc/lib/fontconfig/src/fcpat.c,v 1.11 2002/07/06 23:47:44 keithp Exp $ * * Copyright © 2000 Keith Packard, member of The XFree86 Project, Inc. * @@ -338,6 +338,9 @@ FcPatternEqual (const FcPattern *pa, const FcPattern *pb) { int i; + if (pa == pb) + return FcTrue; + if (pa->num != pb->num) return FcFalse; for (i = 0; i < pa->num; i++)