summaryrefslogtreecommitdiff
path: root/source/pdf/pdf-font.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-05-04 21:22:17 +0200
committerTor Andersson <tor.andersson@artifex.com>2016-05-13 11:42:00 +0200
commit51bd5ba744a806d6b8ccfde7b8f51911a175f2fc (patch)
tree77d772aba28aa91c211c79f976caaa0c5fa69c0e /source/pdf/pdf-font.c
parent0d342fb664c36488bbc0d7f4ca0aa4ab5e7c85b8 (diff)
downloadmupdf-51bd5ba744a806d6b8ccfde7b8f51911a175f2fc.tar.xz
Fix double free and memory leak.
Diffstat (limited to 'source/pdf/pdf-font.c')
-rw-r--r--source/pdf/pdf-font.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/pdf/pdf-font.c b/source/pdf/pdf-font.c
index aa9a9d2f..02af35b7 100644
--- a/source/pdf/pdf-font.c
+++ b/source/pdf/pdf-font.c
@@ -1801,6 +1801,7 @@ pdf_add_to_unicode(fz_context *ctx, pdf_document *doc, fz_font *font)
if (num_seq + num_chr == 0)
{
fz_warn(ctx, "cannot create ToUnicode mapping for %s", font->name);
+ fz_free(ctx, table);
return NULL;
}