mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
i3bar: count references to blocks
This prevents blocks from being destroyed before their hotspots are destroyed, in case it is used for a pending click event that fires between the bar receiving a new status, which destroys the block, and the bar rendering the new status, which destroys the hotspot; this problem can be easily produced by scrolling on a block that immediately causes a new status to be sent, with multiple outputs
This commit is contained in:
parent
af9e8f94cc
commit
2eaef80206
4 changed files with 19 additions and 6 deletions
|
@ -130,7 +130,7 @@ void status_line_free(struct status_line *status) {
|
|||
case PROTOCOL_I3BAR:;
|
||||
struct i3bar_block *block, *tmp;
|
||||
wl_list_for_each_safe(block, tmp, &status->blocks, link) {
|
||||
i3bar_block_free(block);
|
||||
i3bar_block_unref(block);
|
||||
}
|
||||
free(status->i3bar_state.buffer);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue