summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2012-02-01 16:34:56 +0100
committerTor Andersson <tor.andersson@artifex.com>2012-02-01 16:34:56 +0100
commit8b696b191599e6cdfce05bf1252a2c1c0539e1ee (patch)
treed718d2d183ddefccdb12426a48b2c2e9cb44d540
parent00dee1773007462f300e6f3056128bba4efb753e (diff)
downloadmupdf-8b696b191599e6cdfce05bf1252a2c1c0539e1ee.tar.xz
Fix missing argument in iOS app.
-rw-r--r--ios/main.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/main.m b/ios/main.m
index 1ed6246c..aa6a667a 100644
--- a/ios/main.m
+++ b/ios/main.m
@@ -874,7 +874,7 @@ static UIImage *renderTile(struct document *doc, int number, CGSize screenSize,
outline = [[MuOutlineController alloc] initWithTarget: self titles: titles pages: pages];
[titles release];
[pages release];
- fz_free_outline(root);
+ fz_free_outline(ctx, root);
}
return self;