summaryrefslogtreecommitdiff
path: root/src/journal
diff options
context:
space:
mode:
authorPhilippe De Swert <philippedeswert@gmail.com>2014-09-17 00:27:16 +0300
committerDavid Herrmann <dh.herrmann@gmail.com>2014-09-18 15:40:45 +0200
commite8c108ca9f11a382742f212f5b42a02536b3d40f (patch)
tree937e48358318adfe6a65ec7b31086e5d770b4eb3 /src/journal
parentfb7661a6020b5680d5647d3d85b0501a4f3a5042 (diff)
journal: Do not count on the compiler initializing found_last to false
There is a very unlikely case where this can happen since gcc usually does the sane thing. But let's make sure found_last is initialized anyway. Fixes: CID#996386
Diffstat (limited to 'src/journal')
-rw-r--r--src/journal/journal-verify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journal-verify.c b/src/journal/journal-verify.c
index 6c8ca8c26..b4e8f73c4 100644
--- a/src/journal/journal-verify.c
+++ b/src/journal/journal-verify.c
@@ -804,7 +804,7 @@ int journal_file_verify(
usec_t last_usec = 0;
int data_fd = -1, entry_fd = -1, entry_array_fd = -1;
unsigned i;
- bool found_last;
+ bool found_last = false;
#ifdef HAVE_GCRYPT
uint64_t last_tag = 0;
#endif