Pass the buck; make fontconfig not crash on pango badness.
This commit is contained in:
parent
9fb0e0743e
commit
656b47f698
|
@ -1,3 +1,8 @@
|
||||||
|
2006-02-21 Diego Petten <flameeyes@gentoo.org>
|
||||||
|
* src/fcfreetype.c (FcFreeTypeCharIndex):
|
||||||
|
|
||||||
|
Pass the buck; make fontconfig not crash on pango badness.
|
||||||
|
|
||||||
2006-02-21 Patrick Lam <plam@mit.edu>
|
2006-02-21 Patrick Lam <plam@mit.edu>
|
||||||
* conf.d/10-fonts-persian.conf:
|
* conf.d/10-fonts-persian.conf:
|
||||||
|
|
||||||
|
|
|
@ -2312,6 +2312,10 @@ FcFreeTypeCharIndex (FT_Face face, FcChar32 ucs4)
|
||||||
int p;
|
int p;
|
||||||
|
|
||||||
initial = 0;
|
initial = 0;
|
||||||
|
|
||||||
|
if (!face)
|
||||||
|
return 0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Find the current encoding
|
* Find the current encoding
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue