util/addon: ensure the set is empty after finish

This commit is contained in:
Kirill Primak 2022-12-22 11:26:01 +03:00
parent faa31d123f
commit 884237e9af
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ void wlr_addon_set_finish(struct wlr_addon_set *set) {
wl_list_for_each_safe(addon, tmp, &set->addons, link) {
addon->impl->destroy(addon);
}
assert(wl_list_empty(&set->addons));
}
void wlr_addon_init(struct wlr_addon *addon, struct wlr_addon_set *set,