diff options
author | Robin Watts <robin.watts@artifex.com> | 2013-12-23 17:23:38 +0000 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2013-12-23 17:25:05 +0000 |
commit | a79309e9ed72d363b8615bcf9c0b56ddca7864eb (patch) | |
tree | f5ce6378062967680c1a7f0f1ed664c51568b2b1 /source/pdf | |
parent | 2b2cd7bfe73fcc5bf500147b61772679b9923902 (diff) | |
download | mupdf-a79309e9ed72d363b8615bcf9c0b56ddca7864eb.tar.xz |
Bug 694715: Fix typo in error message
Thanks to Michael Cadilhac for spotting this.
Diffstat (limited to 'source/pdf')
-rw-r--r-- | source/pdf/pdf-object.c | 2 |
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); |