summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2013-12-23 17:23:38 +0000
committerRobin Watts <robin.watts@artifex.com>2013-12-23 17:25:05 +0000
commita79309e9ed72d363b8615bcf9c0b56ddca7864eb (patch)
treef5ce6378062967680c1a7f0f1ed664c51568b2b1 /source
parent2b2cd7bfe73fcc5bf500147b61772679b9923902 (diff)
downloadmupdf-a79309e9ed72d363b8615bcf9c0b56ddca7864eb.tar.xz
Bug 694715: Fix typo in error message
Thanks to Michael Cadilhac for spotting this.
Diffstat (limited to 'source')
-rw-r--r--source/pdf/pdf-object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-object.c b/source/pdf/pdf-object.c
index c434b46e..eff0128b 100644
--- a/source/pdf/pdf-object.c
+++ b/source/pdf/pdf-object.c
@@ -1116,7 +1116,7 @@ pdf_dict_putp(pdf_obj *obj, const char *keys, pdf_obj *val)
pdf_obj *cobj = NULL;
if (strlen(keys)+1 > 256)
- fz_throw(ctx, FZ_ERROR_GENERIC, "buffer overflow in pdf_dict_getp");
+ fz_throw(ctx, FZ_ERROR_GENERIC, "buffer overflow in pdf_dict_putp");
strcpy(buf, keys);