anitazha / rpms / systemd

Forked from rpms/systemd 3 years ago
Clone

Blame SOURCES/0036-journal-fix-iteration-when-we-go-backwards-from-the-.patch

572a44
From 5284c03b3bc881c4b79b1afb32284dd86ab836f5 Mon Sep 17 00:00:00 2001
572a44
From: Lennart Poettering <lennart@poettering.net>
572a44
Date: Wed, 27 Nov 2013 00:58:39 +0100
572a44
Subject: [PATCH] journal: fix iteration when we go backwards from the
572a44
 beginning of an array chain element
572a44
572a44
---
572a44
 src/journal/journal-file.c | 2 +-
572a44
 1 file changed, 1 insertion(+), 1 deletion(-)
572a44
572a44
diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c
572a44
index 7adb1b5..53dd0c3 100644
572a44
--- a/src/journal/journal-file.c
572a44
+++ b/src/journal/journal-file.c
572a44
@@ -1687,7 +1687,7 @@ found:
572a44
                 return 0;
572a44
 
572a44
         /* Let's cache this item for the next invocation */
572a44
-        chain_cache_put(f->chain_cache, ci, first, a, array->entry_array.items[0], t, i + (subtract_one ? -1 : 0));
572a44
+        chain_cache_put(f->chain_cache, ci, first, a, array->entry_array.items[0], t, subtract_one ? (i > 0 ? i-1 : (uint64_t) -1) : i);
572a44
 
572a44
         if (subtract_one && i == 0)
572a44
                 p = last_p;