summaryrefslogtreecommitdiff
path: root/source/fitz/store.c
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2017-09-06 20:16:16 +0200
committerSebastian Rasmussen <sebras@gmail.com>2017-09-07 20:40:38 +0800
commita27d9903ec238af6e4c1c59de1e1dae817b4f028 (patch)
treeedab5a190abb4ee105d74e19cf5dc479fadf109a /source/fitz/store.c
parentb096bed7b44f187eaacd8d8ee5f53a67d4aedda2 (diff)
downloadmupdf-a27d9903ec238af6e4c1c59de1e1dae817b4f028.tar.xz
Initialize variables to appease clang scan-build.
Diffstat (limited to 'source/fitz/store.c')
-rw-r--r--source/fitz/store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/store.c b/source/fitz/store.c
index bf98c1aa..bb9426ba 100644
--- a/source/fitz/store.c
+++ b/source/fitz/store.c
@@ -447,7 +447,7 @@ fz_store_item(fz_context *ctx, void *key, void *val_, size_t itemsize, const fz_
* to check whether we have one there already. */
if (use_hash)
{
- fz_item *existing;
+ fz_item *existing = NULL;
fz_try(ctx)
{