summaryrefslogtreecommitdiff
path: root/pdf
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2012-02-29 20:19:54 +0000
committerRobin Watts <robin.watts@artifex.com>2012-02-29 20:19:54 +0000
commit0f1a9b148f52acbff16d3cae34d02ef806a73571 (patch)
tree5ea90f79a62c3ae0cc599b016fa21290c30a2872 /pdf
parent4a80adff52b8f4fc4f7f0aba8d3583953ddde824 (diff)
downloadmupdf-0f1a9b148f52acbff16d3cae34d02ef806a73571.tar.xz
Fix typo that causes an undefined pointer to be freed.
When a font is destroyed the t3 resources are freed; due to a typo a random pointer was being freed.
Diffstat (limited to 'pdf')
-rw-r--r--pdf/pdf_type3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pdf/pdf_type3.c b/pdf/pdf_type3.c
index 7a3b985f..dc931e22 100644
--- a/pdf/pdf_type3.c
+++ b/pdf/pdf_type3.c
@@ -11,7 +11,7 @@ pdf_run_glyph_func(void *doc, void *rdb_, fz_buffer *contents, fz_device *dev, f
static void
pdf_t3_free_resources(void *doc, void *rdb_)
{
- pdf_obj *rdb = (pdf_obj *)rdb;
+ pdf_obj *rdb = (pdf_obj *)rdb_;
pdf_drop_obj(rdb);
}