shithub: freetype+ttf2subf

Download patch

ref: b6183ea369757f6f0126c9822d21eaa88903b7c5
parent: ee19a6cbbcb28e7aab04dd13918edd46f21ecb22
author: Werner Lemberg <wl@gnu.org>
date: Thu Jul 23 09:03:22 EDT 2020

* src/sfnt/sfwoff2.c (woff2_decompress): Fix compiler warning.

Reported by Hin-Tak.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2020-07-23  Werner Lemberg  <wl@gnu.org>
+
+	* src/sfnt/sfwoff2.c (woff2_decompress): Fix compiler warning.
+
+	Reported by Hin-Tak.
+
 2020-07-12  Werner Lemberg  <wl@gnu.org>
 
 	* builds/unix/configure.raw: Fix inclusion of `ftoption.h'.
--- a/src/sfnt/sfwoff2.c
+++ b/src/sfnt/sfwoff2.c
@@ -318,7 +318,9 @@
   {
 #ifdef FT_CONFIG_OPTION_USE_BROTLI
 
-    FT_ULong             uncompressed_size = dst_size;
+    /* this cast is only of importance on 32bit systems; */
+    /* we don't validate it                              */
+    FT_Offset            uncompressed_size = (FT_Offset)dst_size;
     BrotliDecoderResult  result;