shithub: freetype+ttf2subf

Download patch

ref: 3e8ec291ffcfa03c8ecba1cdbfaa55f5577f5612
parent: d71f2bc1593200a8f763841c0a083ba91f7dad01
author: Alexei Podtelezhnikov <[email protected]>
date: Fri Oct 26 19:23:48 EDT 2018

[sfnt] Make `head' timestamps unsigned.

It's been more than 2^31 seconds since 1904.

* include/freetype/tttables.h (TT_Header): Change field types.
* src/sfnt/ttload.c (tt_face_load_generic_header): Updated.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 2018-10-27  Alexei Podtelezhnikov  <[email protected]>
 
+	[sfnt] Make `head' timestamps unsigned.
+
+	It's been more than 2^31 seconds since 1904.
+
+	* include/freetype/tttables.h (TT_Header): Change field types.
+	* src/sfnt/ttload.c (tt_face_load_generic_header): Updated.
+
+2018-10-27  Alexei Podtelezhnikov  <[email protected]>
+
 	Revert: Align FreeType with standard C memory management.
 
 2018-10-27  Werner Lemberg  <[email protected]>
--- a/include/freetype/tttables.h
+++ b/include/freetype/tttables.h
@@ -91,8 +91,8 @@
     FT_UShort  Flags;
     FT_UShort  Units_Per_EM;
 
-    FT_Long    Created [2];
-    FT_Long    Modified[2];
+    FT_ULong   Created [2];
+    FT_ULong   Modified[2];
 
     FT_Short   xMin;
     FT_Short   yMin;
--- a/src/sfnt/ttload.c
+++ b/src/sfnt/ttload.c
@@ -638,10 +638,10 @@
         FT_FRAME_LONG  ( Magic_Number ),
         FT_FRAME_USHORT( Flags ),
         FT_FRAME_USHORT( Units_Per_EM ),
-        FT_FRAME_LONG  ( Created[0] ),
-        FT_FRAME_LONG  ( Created[1] ),
-        FT_FRAME_LONG  ( Modified[0] ),
-        FT_FRAME_LONG  ( Modified[1] ),
+        FT_FRAME_ULONG ( Created[0] ),
+        FT_FRAME_ULONG ( Created[1] ),
+        FT_FRAME_ULONG ( Modified[0] ),
+        FT_FRAME_ULONG ( Modified[1] ),
         FT_FRAME_SHORT ( xMin ),
         FT_FRAME_SHORT ( yMin ),
         FT_FRAME_SHORT ( xMax ),