summaryrefslogtreecommitdiff
path: root/source/pdf/pdf-object.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/pdf/pdf-object.c')
-rw-r--r--source/pdf/pdf-object.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/pdf/pdf-object.c b/source/pdf/pdf-object.c
index c93a9d52..c17d982c 100644
--- a/source/pdf/pdf-object.c
+++ b/source/pdf/pdf-object.c
@@ -345,6 +345,13 @@ void pdf_set_int(fz_context *ctx, pdf_obj *obj, int i)
NUM(obj)->u.i = i;
}
+void pdf_set_int_offset(fz_context *ctx, pdf_obj *obj, fz_off_t i)
+{
+ if (obj < PDF_OBJ__LIMIT || obj->kind != PDF_INT)
+ return;
+ NUM(obj)->u.i = i;
+}
+
/* for use by pdf_crypt_obj_imp to decrypt AES string in place */
void pdf_set_str_len(fz_context *ctx, pdf_obj *obj, int newlen)
{