summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carey <Jeff.Carey@monotype.com>2018-07-02 22:27:57 +0200
committerWerner Lemberg <wl@gnu.org>2018-07-02 22:27:57 +0200
commitd9d300ab6bd8895b9247213ac87b26cc76a3fc5d (patch)
tree543d7d3f0fbc08bdfba6111accb5210d2761d09a
parent396051daee490544322b6ca5964772ecbebeac52 (diff)
downloadfreetype2-d9d300ab6bd8895b9247213ac87b26cc76a3fc5d.tar.gz
* src/psnames/psmodule.c (ps_unicodes_init): Fix alloc debugging.
-rw-r--r--ChangeLog4
-rw-r--r--src/psnames/psmodule.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index de353fd7d..4941e0e24 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2018-07-02 Jeff Carey <Jeff.Carey@monotype.com>
+
+ * src/psnames/psmodule.c (ps_unicodes_init): Fix alloc debugging.
+
2018-07-02 Werner Lemberg <wl@gnu.org>
s/palette_types/palette_flags/.
diff --git a/src/psnames/psmodule.c b/src/psnames/psmodule.c
index 97dcfb691..719e94d8f 100644
--- a/src/psnames/psmodule.c
+++ b/src/psnames/psmodule.c
@@ -392,7 +392,9 @@
/* Reallocate if the number of used entries is much smaller. */
if ( count < num_glyphs / 2 )
{
- (void)FT_RENEW_ARRAY( table->maps, num_glyphs, count );
+ (void)FT_RENEW_ARRAY( table->maps,
+ num_glyphs + EXTRA_GLYPH_LIST_SIZE,
+ count );
error = FT_Err_Ok;
}