diff options
Diffstat (limited to 'source')
-rw-r--r-- | source/pdf/pdf-stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/pdf/pdf-stream.c b/source/pdf/pdf-stream.c index bf828bd0..e8ce2fab 100644 --- a/source/pdf/pdf-stream.c +++ b/source/pdf/pdf-stream.c @@ -362,8 +362,8 @@ pdf_open_inline_stream(fz_context *ctx, pdf_document *doc, pdf_obj *stmobj, int void pdf_load_compressed_inline_image(fz_context *ctx, pdf_document *doc, pdf_obj *dict, int length, fz_stream *file_stm, int indexed, fz_compressed_image *image) { - fz_stream *istm, *leech, *decomp; - fz_pixmap *pixmap; + fz_stream *istm = NULL, *leech = NULL, *decomp = NULL; + fz_pixmap *pixmap = NULL; fz_compressed_buffer *bc; int dummy_l2factor = 0; |