diff --git a/ChangeLog b/ChangeLog index 80e3e273d..d9467f5b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-01-15 James Su + + * src/gzip/ftgzip.c: bugfix: couldn't read certain gzip-ed font files + 2003-01-15 Huw D M Davies * include/freetype/config/ftheader.h, include/freetype/internal/fnttypes.h, diff --git a/src/gzip/ftgzip.c b/src/gzip/ftgzip.c index b814e8ec5..a736ea869 100644 --- a/src/gzip/ftgzip.c +++ b/src/gzip/ftgzip.c @@ -177,7 +177,7 @@ (void)FT_STREAM_SKIP( 6 ); /* skip the extra field */ - if ( head[3] && FT_GZIP_EXTRA_FIELD ) + if ( head[3] & FT_GZIP_EXTRA_FIELD ) { FT_UInt len; @@ -187,7 +187,7 @@ } /* skip original file name */ - if ( head[3] && FT_GZIP_ORIG_NAME ) + if ( head[3] & FT_GZIP_ORIG_NAME ) for (;;) { FT_UInt c;