mirror of
https://github.com/systemd/systemd.git
synced 2026-08-08 09:01:02 +00:00
list: make LIST_FOREACH() and LIST_FOREACH_BACKWARDS() safer
This commit is contained in:
@@ -190,7 +190,7 @@ static int load_state(Context *c, const struct rfkill_event *event) {
|
||||
static void save_state_queue_remove(Context *c, int idx, const char *state_file) {
|
||||
assert(c);
|
||||
|
||||
LIST_FOREACH_SAFE(queue, item, tmp, c->write_queue)
|
||||
LIST_FOREACH(queue, item, c->write_queue)
|
||||
if ((state_file && streq(item->file, state_file)) || idx == item->rfkill_idx) {
|
||||
log_debug("Canceled previous save state of '%s' to %s.", one_zero(item->state), item->file);
|
||||
LIST_REMOVE(queue, c->write_queue, item);
|
||||
|
||||
Reference in New Issue
Block a user