* 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:
parent
282637f6a5
commit
f79a7ae0b0
|
@ -16,6 +16,12 @@
|
||||||
* src/bdf/bdfdrivr.c (BDF_Face_Init), src/pcf/pcfdriver.c
|
* src/bdf/bdfdrivr.c (BDF_Face_Init), src/pcf/pcfdriver.c
|
||||||
(PCF_Face_Init): Test for charset registry case-insensitively.
|
(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>
|
2003-05-21 Martin Zinser <zinser@decus.de>
|
||||||
|
|
||||||
* t1load.c (parse_blend_axis_types): Fix compiler warning.
|
* t1load.c (parse_blend_axis_types): Fix compiler warning.
|
||||||
|
|
|
@ -479,8 +479,6 @@
|
||||||
|
|
||||||
|
|
||||||
delta = (FT_ULong)( zip->limit - zip->cursor );
|
delta = (FT_ULong)( zip->limit - zip->cursor );
|
||||||
if ( delta == 0 )
|
|
||||||
break;
|
|
||||||
if ( delta >= count )
|
if ( delta >= count )
|
||||||
delta = count;
|
delta = count;
|
||||||
|
|
||||||
|
|
|
@ -2612,8 +2612,10 @@
|
||||||
(FT_UShort)args[0], \
|
(FT_UShort)args[0], \
|
||||||
CUR.opcode, \
|
CUR.opcode, \
|
||||||
&CUR.GS.freeVector ) == SUCCESS ) \
|
&CUR.GS.freeVector ) == SUCCESS ) \
|
||||||
|
{ \
|
||||||
GUESS_VECTOR( projVector ); \
|
GUESS_VECTOR( projVector ); \
|
||||||
COMPUTE_Funcs();
|
COMPUTE_Funcs(); \
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#define DO_SFVTPV \
|
#define DO_SFVTPV \
|
||||||
|
|
Loading…
Reference in New Issue