From e590af2666d2a958d355f9957e77ec967bb16011 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 3 Jul 2012 11:58:16 +0200 Subject: journal: fix iteration through journal if one file is corrupt --- src/journal/sd-journal.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index 9c6cbaac51..75884594a1 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -670,9 +670,10 @@ static int real_journal_next(sd_journal *j, direction_t direction) { bool found; r = next_beyond_location(j, f, direction, &o, &p); - if (r < 0) - return r; - else if (r == 0) + if (r < 0) { + log_debug("Can't iterate through %s, ignoring: %s", f->path, strerror(-r)); + continue; + } else if (r == 0) continue; if (!new_current) -- cgit v1.2.3-54-g00ecf