diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2011-09-20 15:50:07 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2011-09-20 15:50:07 +0200 |
commit | 99ba154018b7c4a2c47b4c7e721ffe6d9164f9f3 (patch) | |
tree | 228cdc9d4c1af8caa3e815bc43441b0a1a551f5b /apps/pdfshow.c | |
parent | b51ef0eea028c73b6379e832eaa34fff3fbbb927 (diff) | |
download | mupdf-99ba154018b7c4a2c47b4c7e721ffe6d9164f9f3.tar.xz |
Reshuffle exception context code to fit Tor's aesthetic sense.
Diffstat (limited to 'apps/pdfshow.c')
-rw-r--r-- | apps/pdfshow.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/pdfshow.c b/apps/pdfshow.c index bbb6747e..653ffff6 100644 --- a/apps/pdfshow.c +++ b/apps/pdfshow.c @@ -214,7 +214,7 @@ int main(int argc, char **argv) filename = argv[fz_optind++]; - ctx = fz_context_init(&fz_alloc_default); + ctx = fz_new_context(&fz_alloc_default); if (ctx == NULL) die(fz_error_note(1, "failed to initialise context")); @@ -239,9 +239,7 @@ int main(int argc, char **argv) } pdf_free_xref(xref); - fz_flush_warnings(); - fz_context_fin(ctx); - + fz_free_context(ctx); return 0; } |