summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2022-04-01 14:44:42 +0200
committerWerner Lemberg <wl@gnu.org>2022-04-01 14:50:44 +0200
commitfc082956505e97502c415c807577aaf70fec9960 (patch)
tree9a383ea006eaeb9c4e1c615abb2b4de43ec0c768
parent1603378b918c1b1c02d14fbb7a9d8aa0ae2380e9 (diff)
downloadfreetype2-fc082956505e97502c415c807577aaf70fec9960.tar.gz
* src/sfnt/sfwoff.c (reconstruct_glyf): Fix gcc 10 warning.
-rw-r--r--src/sfnt/sfwoff2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sfnt/sfwoff2.c b/src/sfnt/sfwoff2.c
index 0a0938d43..b2855b8e7 100644
--- a/src/sfnt/sfwoff2.c
+++ b/src/sfnt/sfwoff2.c
@@ -973,7 +973,7 @@
/* composite glyph */
FT_Bool have_instructions = FALSE;
FT_UShort instruction_size = 0;
- FT_ULong composite_size;
+ FT_ULong composite_size = 0;
FT_ULong size_needed;
FT_Byte* pointer = NULL;