summaryrefslogtreecommitdiff
path: root/platform/android
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2016-03-31 01:05:58 +0200
committerTor Andersson <tor.andersson@artifex.com>2016-03-31 13:01:36 +0200
commit09a80805da7f7ed46eae1836cfec383238a991b9 (patch)
tree4b2c1da2fa85402147e7954922f0dafc6f81e61b /platform/android
parentf8b35b0fe546c9f34626155f19dafe16a8f82829 (diff)
downloadmupdf-09a80805da7f7ed46eae1836cfec383238a991b9.tar.xz
Initialize disabled document writing flags to zero
Also remove redundant assignments. Fixes http://bugs.ghostscript.com/show_bug.cgi?id=695968
Diffstat (limited to 'platform/android')
-rw-r--r--platform/android/viewer/jni/mupdf.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/platform/android/viewer/jni/mupdf.c b/platform/android/viewer/jni/mupdf.c
index bc23b9ca..5e04ff8e 100644
--- a/platform/android/viewer/jni/mupdf.c
+++ b/platform/android/viewer/jni/mupdf.c
@@ -2598,12 +2598,9 @@ JNI_FN(MuPDFCore_saveInternal)(JNIEnv * env, jobject thiz)
if (idoc && glo->current_path)
{
char *tmp;
- pdf_write_options opts;
+ pdf_write_options opts = { 0 };
+
opts.do_incremental = 1;
- opts.do_ascii = 0;
- opts.do_expand = 0;
- opts.do_garbage = 0;
- opts.do_linear = 0;
tmp = tmp_path(glo->current_path);
if (tmp)