diff options
author | Robin Watts <robin.watts@artifex.com> | 2012-06-22 13:25:48 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2012-06-22 16:33:59 +0100 |
commit | 34fc2fb23d9f0a9b2a68896e608ea149d8bc38e2 (patch) | |
tree | 06d5d6a8c9a5ea010d473f578ea1fff320bbf49e /apps | |
parent | d5e30d8c2b23a2f2ca6b35203c95d930f670fa88 (diff) | |
download | mupdf-34fc2fb23d9f0a9b2a68896e608ea149d8bc38e2.tar.xz |
Free context in mujstest to avoid leaks.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/jstest_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/jstest_main.c b/apps/jstest_main.c index b8570f18..98e55909 100644 --- a/apps/jstest_main.c +++ b/apps/jstest_main.c @@ -361,5 +361,7 @@ main(int argc, char *argv[]) if (file_open) pdfapp_close(&gapp); + fz_free_context(ctx); + return 0; } |