* 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.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
diff --git a/ChangeLog b/ChangeLog
index 7fcd67e..086ade9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/src/gzip/ftgzip.c b/src/gzip/ftgzip.c
index 8f37450..d495800 100644
--- a/src/gzip/ftgzip.c
+++ b/src/gzip/ftgzip.c
@@ -479,8 +479,6 @@
delta = (FT_ULong)( zip->limit - zip->cursor );
- if ( delta == 0 )
- break;
if ( delta >= count )
delta = count;
diff --git a/src/truetype/ttinterp.c b/src/truetype/ttinterp.c
index b305ce6..6e96532 100644
--- a/src/truetype/ttinterp.c
+++ b/src/truetype/ttinterp.c
@@ -2612,8 +2612,10 @@
(FT_UShort)args[0], \
CUR.opcode, \
&CUR.GS.freeVector ) == SUCCESS ) \
+ { \
GUESS_VECTOR( projVector ); \
- COMPUTE_Funcs();
+ COMPUTE_Funcs(); \
+ }
#define DO_SFVTPV \