[mupdf] Ensure ctm variable is initialized (#1102)

This commit is contained in:
Jonathan Rudenberg 2018-01-22 11:20:12 -05:00 committed by Abhishek Arya
parent 7152179c4a
commit 61cec32e26
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
fz_register_document_handlers(ctx); fz_register_document_handlers(ctx);
fz_stream *stream = fz_open_memory(ctx, data, size); fz_stream *stream = fz_open_memory(ctx, data, size);
fz_matrix ctm; fz_matrix ctm = fz_identity;
fz_pixmap *pix = NULL; fz_pixmap *pix = NULL;
fz_document *doc = NULL; fz_document *doc = NULL;
fz_try(ctx) { fz_try(ctx) {