From b4e5f9201706cbd0c83645175649119e87c2c91c Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 4 Jan 2012 03:45:24 +0100 Subject: [PATCH 1/1] journal: add missing error check --- src/journal/sd-journal.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index fde1a0be8..1833c7534 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -372,6 +372,9 @@ static int find_location(sd_journal *j, JournalFile *f, direction_t direction, O else r = journal_file_next_entry_for_data(f, NULL, 0, dp, direction, &c, &cp); + if (r < 0) + return r; + if (!term_match) { term_match = m; -- 2.30.2