ref: cb37b3b36a1f846fa5404e8a043b545cdcd7d1e0
parent: bebc7b11c52c00e8edfaf2ba38ca25d135404a1c
author: Werner Lemberg <[email protected]>
date: Fri Jun 1 02:49:03 EDT 2007
* builds/unix/ftsystem.c (FT_Stream_Open): Don't use ULONG_MAX but LONG_MAX to avoid compiler warning. Suggested by Sean McBride.
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
* src/cid/cidparse.c (cid_parser_new): Don't continue second search
pass for `StartData' if an error has occurred.
+ * builds/unix/ftsystem.c (FT_Stream_Open): Don't use ULONG_MAX but
+ LONG_MAX to avoid compiler warning. Suggested by Sean McBride.
+
2007-05-30 Werner Lemberg <[email protected]>
* src/type1/t1load.c (parse_subrs, parse_charstrings): Protect
--- a/builds/unix/ftsystem.c
+++ b/builds/unix/ftsystem.c
@@ -275,7 +275,7 @@
/* To avoid overflow caused by fonts in huge files larger than */
/* 2GB, do a test. Temporary fix proposed by Sean McBride. */
/* */
- if ( stat_buf.st_size > ULONG_MAX )
+ if ( stat_buf.st_size > LONG_MAX )
{
FT_ERROR(( "FT_Stream_Open: file is too big" ));
goto Fail_Map;
--- a/include/freetype/fttypes.h
+++ b/include/freetype/fttypes.h
@@ -384,7 +384,7 @@
/*************************************************************************/
/* */
/* <Struct> */
- /* FT_Data */
+ /* FT_Data */
/* */
/* <Description> */
/* Read-only binary data represented as a pointer and a length. */