summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-03-31 15:13:49 +0200
committerTor Andersson <tor.andersson@artifex.com>2016-03-31 15:13:49 +0200
commitf20b6024713e480e8bc47dfc53e82aa46ebfb28e (patch)
treea63e3a65ee712260a6301c16c2a287a4ba40b886 /source
parent09a80805da7f7ed46eae1836cfec383238a991b9 (diff)
downloadmupdf-f20b6024713e480e8bc47dfc53e82aa46ebfb28e.tar.xz
Initialize pdf write options to zero in pdfclean.
Diffstat (limited to 'source')
-rw-r--r--source/tools/pdfclean.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tools/pdfclean.c b/source/tools/pdfclean.c
index 94e2b91b..f703b155 100644
--- a/source/tools/pdfclean.c
+++ b/source/tools/pdfclean.c
@@ -37,7 +37,7 @@ int pdfclean_main(int argc, char **argv)
char *outfile = "out.pdf";
char *password = "";
int c;
- pdf_write_options opts;
+ pdf_write_options opts = { 0 };
int errors = 0;
fz_context *ctx;