summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2011-12-09 16:58:25 +0000
committerRobin Watts <robin.watts@artifex.com>2011-12-09 16:58:25 +0000
commitb5220176e550c8c6ff92f8eb556ad734e42bebe2 (patch)
tree453df03429ec2f6ce79f16c77245701e651c3187
parentfc0912d1c9a5327191fc0328b364bfd2068d3470 (diff)
downloadmupdf-b5220176e550c8c6ff92f8eb556ad734e42bebe2.tar.xz
Reinstate some missing fz_vars.
-rw-r--r--pdf/pdf_xref.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pdf/pdf_xref.c b/pdf/pdf_xref.c
index d781f0c9..f79c6f9a 100644
--- a/pdf/pdf_xref.c
+++ b/pdf/pdf_xref.c
@@ -648,8 +648,8 @@ pdf_open_xref_with_stream(fz_stream *file, char *password)
int i, repaired = 0;
fz_context *ctx = file->ctx;
- //fz_var(dict);
- //fz_var(nobj);
+ fz_var(dict);
+ fz_var(nobj);
/* install pdf specific callback */
fz_resolve_indirect = pdf_resolve_indirect;
@@ -1070,7 +1070,7 @@ pdf_open_xref(fz_context *ctx, const char *filename, char *password)
fz_stream *file = NULL;
pdf_xref *xref;
- //fz_var(file);
+ fz_var(file);
fz_try(ctx)
{
file = fz_open_file(ctx, filename);