From: Yu Watanabe Date: Sat, 29 Apr 2023 22:00:31 +0000 (+0900) Subject: sd-journal: unset prioq index on failure X-Git-Tag: v254-rc1~586^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f11de491ca305dc31378660c6883cc23d16c9ae7;p=thirdparty%2Fsystemd.git sd-journal: unset prioq index on failure Otherwise, potentially, the assertion in journal_file_unlink_newest_by_bood_id() will be triggered. --- 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); }