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
This commit is contained in:
Olivier Brunel 2014-12-05 16:06:45 +01:00 committed by Lennart Poettering
parent 1e19f35297
commit 2173cbf847

View file

@ -1657,7 +1657,7 @@ static int generic_array_bisect(
}
}
if (k > n) {
if (k >= n) {
if (direction == DIRECTION_UP) {
i = n;
subtract_one = true;