* src/base/ftobjs.c (FT_Set_Char_Size): Ahh.. forgot to check the case

width or height is 0.
This commit is contained in:
Wu, Chia-I (吳佳一) 2006-02-27 11:11:40 +00:00
parent 2f239b8e88
commit cffa8b65be
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-02-27 Chia-I Wu <b90201047@ntu.edu.tw>
* src/base/ftobjs.c (FT_Set_Char_Size): Ahh.. forgot to check the case
width or height is 0.
2006-02-27 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
* builds/mac/FreeType.m68k_cfm.make.txt,

View File

@ -2382,6 +2382,11 @@
FT_Size_RequestRec req;
if ( !char_width )
char_width = char_height;
else if ( !char_height )
char_height = char_width;
if ( char_width < 1 * 64 )
char_width = 1 * 64;
if ( char_height < 1 * 64 )