diff options
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/dvipdfmx/src/tt_post.c | 2 | ||||
-rw-r--r-- | Build/source/texk/xdvipdfmx/src/tt_post.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/dvipdfmx/src/tt_post.c b/Build/source/texk/dvipdfmx/src/tt_post.c index a1efeb1fac9..8588a6d03bd 100644 --- a/Build/source/texk/dvipdfmx/src/tt_post.c +++ b/Build/source/texk/dvipdfmx/src/tt_post.c @@ -173,7 +173,7 @@ tt_release_post_table (struct tt_post_table *post) ASSERT(post); - if (post->glyphNamePtr) + if (post->glyphNamePtr && post->Version != 0x00010000UL) RELEASE(post->glyphNamePtr); if (post->names) { for (i = 0; i < post->count; i++) { diff --git a/Build/source/texk/xdvipdfmx/src/tt_post.c b/Build/source/texk/xdvipdfmx/src/tt_post.c index 8779010a205..ef687ffe75f 100644 --- a/Build/source/texk/xdvipdfmx/src/tt_post.c +++ b/Build/source/texk/xdvipdfmx/src/tt_post.c @@ -185,7 +185,7 @@ tt_release_post_table (struct tt_post_table *post) ASSERT(post); - if (post->glyphNamePtr) + if (post->glyphNamePtr && post->Version != 0x00010000UL) RELEASE(post->glyphNamePtr); if (post->names) { for (i = 0; i < post->count; i++) { |