View | Details | Raw Unified | Return to bug 150552
Collapse All | Expand All

(-)fontconfig-2.3.93.20060213.orig/src/fcfreetype.c (+5 lines)
Lines 1609-1614 Link Here
1609
            int value;
1609
            int value;
1610
            BDF_PropertyRec prop;
1610
            BDF_PropertyRec prop;
1611
1611
1612
	    /* skip bitmap fonts which do not even have a family name */
1613
	    rc =  FT_Get_BDF_Property(face, "FAMILY_NAME", &prop);
1614
            if (rc != 0 || prop.type != BDF_PROPERTY_TYPE_ATOM)
1615
		goto bail1;
1616
	    
1612
            rc = FT_Get_BDF_Property(face, "POINT_SIZE", &prop);
1617
            rc = FT_Get_BDF_Property(face, "POINT_SIZE", &prop);
1613
            if(rc == 0 && prop.type == BDF_PROPERTY_TYPE_INTEGER)
1618
            if(rc == 0 && prop.type == BDF_PROPERTY_TYPE_INTEGER)
1614
                value = prop.u.integer;
1619
                value = prop.u.integer;

Return to bug 150552