[systemd-commits] src/journal
Lennart Poettering
lennart at kemper.freedesktop.org
Mon Dec 8 10:38:59 PST 2014
src/journal/journal-file.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 2173cbf847fc53ca24950e77958c902edecfc207
Author: Olivier Brunel <jjk at jjacky.com>
Date: Fri Dec 5 16:06:45 2014 +0100
journal: Fix navigating backwards missing entries
With DIRECTION_UP (i.e. navigating backwards) in generic_array_bisect() when the
needle was found as the last item in the array, it wasn't actually processed as
match, resulting in entries being missed.
https://bugs.freedesktop.org/show_bug.cgi?id=86855
diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c
index 7858435..c5d2d19 100644
--- a/src/journal/journal-file.c
+++ b/src/journal/journal-file.c
@@ -1657,7 +1657,7 @@ static int generic_array_bisect(
}
}
- if (k > n) {
+ if (k >= n) {
if (direction == DIRECTION_UP) {
i = n;
subtract_one = true;
More information about the systemd-commits
mailing list