summaryrefslogtreecommitdiff
path: root/source/html/css-parse.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/html/css-parse.c
parentb096bed7b44f187eaacd8d8ee5f53a67d4aedda2 (diff)
downloadmupdf-a27d9903ec238af6e4c1c59de1e1dae817b4f028.tar.xz
Initialize variables to appease clang scan-build.
Diffstat (limited to 'source/html/css-parse.c')
-rw-r--r--source/html/css-parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/html/css-parse.c b/source/html/css-parse.c
index 8dbc4dae..8242279c 100644
--- a/source/html/css-parse.c
+++ b/source/html/css-parse.c
@@ -27,7 +27,7 @@ FZ_NORETURN static void fz_css_error(struct lexbuf *buf, const char *msg)
fz_css *fz_new_css(fz_context *ctx)
{
fz_pool *pool = fz_new_pool(ctx);
- fz_css *css;
+ fz_css *css = NULL;
fz_try(ctx)
{