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

Reported by Hin-Tak.
GSoC-2020-greg
Werner Lemberg 5 years ago
parent ee19a6cbbc
commit b6183ea369
  1. 6
      ChangeLog
  2. 4
      src/sfnt/sfwoff2.c

@ -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'.

@ -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;

Loading…
Cancel
Save