summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2004-01-24 15:06:57 +0000
committerWerner Lemberg <wl@gnu.org>2004-01-24 15:06:57 +0000
commita078e836ca05c48350f5eed4edfc72090a508055 (patch)
tree957a06b455ba7817dac2b5160a7352885213b0a7
parentf4c46c688e6ae8e441b1f8c0cb9993c30c7e9cc8 (diff)
downloadfreetype2-a078e836ca05c48350f5eed4edfc72090a508055.tar.gz
* src/cff/cffload.c (cff_subfont_load): Initialize `dict'.
-rw-r--r--ChangeLog4
-rw-r--r--src/cff/cffload.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d533e4a98..413391c11 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-01-22 Garrick Meeker <garrick@digitalanarchy.com>
+
+ * src/cff/cffload.c (cff_subfont_load): Initialize `dict'.
+
2004-01-22 Werner Lemberg <wl@gnu.org>
Add support for the hexadicimal representation of binary data
diff --git a/src/cff/cffload.c b/src/cff/cffload.c
index d4f2a35af..bbec294ed 100644
--- a/src/cff/cffload.c
+++ b/src/cff/cffload.c
@@ -1972,7 +1972,7 @@
{
FT_Error error;
CFF_ParserRec parser;
- FT_Byte* dict;
+ FT_Byte* dict = NULL;
FT_ULong dict_len;
CFF_FontRecDict top = &font->font_dict;
CFF_Private priv = &font->private_dict;