* src/gzip/ftgzip.c (ft_gzip_fil_io): Revert change from yesterday;

it has already been fixed differently.

* src/truetype/ttinterp.c (DO_SFVTL): Add missing braces around
if-clause.
This commit is contained in:
Werner Lemberg 2003-05-21 21:47:25 +00:00
parent 22d661dd95
commit 834dd30508
3 changed files with 9 additions and 3 deletions

View File

@ -16,6 +16,12 @@
* src/bdf/bdfdrivr.c (BDF_Face_Init), src/pcf/pcfdriver.c
(PCF_Face_Init): Test for charset registry case-insensitively.
* src/gzip/ftgzip.c (ft_gzip_fil_io): Revert change from yesterday;
it has already been fixed differently.
* src/truetype/ttinterp.c (DO_SFVTL): Add missing braces around
if-clause.
2003-05-21 Martin Zinser <zinser@decus.de>
* t1load.c (parse_blend_axis_types): Fix compiler warning.

View File

@ -479,8 +479,6 @@
delta = (FT_ULong)( zip->limit - zip->cursor );
if ( delta == 0 )
break;
if ( delta >= count )
delta = count;

View File

@ -2612,8 +2612,10 @@
(FT_UShort)args[0], \
CUR.opcode, \
&CUR.GS.freeVector ) == SUCCESS ) \
{ \
GUESS_VECTOR( projVector ); \
COMPUTE_Funcs();
COMPUTE_Funcs(); \
}
#define DO_SFVTPV \