From f11de491ca305dc31378660c6883cc23d16c9ae7 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sun, 30 Apr 2023 07:00:31 +0900 Subject: [PATCH] sd-journal: unset prioq index on failure Otherwise, potentially, the assertion in journal_file_unlink_newest_by_bood_id() will be triggered. --- src/libsystemd/sd-journal/sd-journal.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libsystemd/sd-journal/sd-journal.c b/src/libsystemd/sd-journal/sd-journal.c index d5561c9a46b..d4adbe5f0f4 100644 --- a/src/libsystemd/sd-journal/sd-journal.c +++ b/src/libsystemd/sd-journal/sd-journal.c @@ -2353,8 +2353,10 @@ static int journal_file_reshuffle_newest_by_boot_id(sd_journal *j, JournalFile * return r; r = hashmap_ensure_put(&j->newest_by_boot_id, &id128_hash_ops, &f->newest_boot_id, q); - if (r < 0) + if (r < 0) { + f->newest_boot_id_prioq_idx = PRIOQ_IDX_NULL; return r; + } TAKE_PTR(q); } -- 2.47.3