ref: 619d62d9331b3af39692c1938e2c993861b90581
parent: 12d09050f59d0733e9b0caacc246823f9ee92d2a
author: David Turner <[email protected]>
date: Wed Jan 15 18:01:02 EST 2003
* src/gzip/ftgzip.c: bugfix: couldn't read certain gzip-ed font files
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-01-15 James Su <[email protected]>
+
+ * src/gzip/ftgzip.c: bugfix: couldn't read certain gzip-ed font files
+
2003-01-15 Huw D M Davies <[email protected]>
* include/freetype/config/ftheader.h, include/freetype/internal/fnttypes.h,
--- 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;