From a27d9903ec238af6e4c1c59de1e1dae817b4f028 Mon Sep 17 00:00:00 2001 From: Sebastian Rasmussen Date: Wed, 6 Sep 2017 20:16:16 +0200 Subject: Initialize variables to appease clang scan-build. --- source/fitz/stream-open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/fitz/stream-open.c') diff --git a/source/fitz/stream-open.c b/source/fitz/stream-open.c index 3fe58712..83990d52 100644 --- a/source/fitz/stream-open.c +++ b/source/fitz/stream-open.c @@ -16,7 +16,7 @@ fz_file_exists(fz_context *ctx, const char *path) fz_stream * fz_new_stream(fz_context *ctx, void *state, fz_stream_next_fn *next, fz_stream_close_fn *close) { - fz_stream *stm; + fz_stream *stm = NULL; fz_try(ctx) { -- cgit v1.2.3