config: free URL bindings

This commit is contained in:
Daniel Eklöf 2021-01-30 15:42:51 +01:00
parent ee39966ded
commit b255aea3ed
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 5 additions and 0 deletions

View file

@ -2406,6 +2406,7 @@ config_free(struct config conf)
tll_free(conf.bindings.key);
tll_free(conf.bindings.mouse);
tll_free(conf.bindings.search);
tll_free(conf.bindings.url);
user_notifications_free(&conf.notifications);
}

View file

@ -148,6 +148,10 @@ seat_destroy(struct seat *seat)
tll_free(it->item.bind.key_codes);
tll_free(seat->kbd.bindings.search);
tll_foreach(seat->kbd.bindings.url, it)
tll_free(it->item.bind.key_codes);
tll_free(seat->kbd.bindings.url);
tll_free(seat->mouse.bindings);
if (seat->kbd.xkb_compose_state != NULL)