mirror of
https://github.com/tmux/tmux.git
synced 2024-11-05 10:28:48 +00:00
Initialize alerts timer event where it is used, avoids crash with new windows.
This commit is contained in:
parent
a8b84b7cfa
commit
71ec616e4d
6
alerts.c
6
alerts.c
@ -141,6 +141,9 @@ alerts_reset(struct window *w)
|
||||
{
|
||||
struct timeval tv;
|
||||
|
||||
if (!event_initialized(&w->alerts_timer))
|
||||
evtimer_set(&w->alerts_timer, alerts_timer, w);
|
||||
|
||||
w->flags &= ~WINDOW_SILENCE;
|
||||
event_del(&w->alerts_timer);
|
||||
|
||||
@ -157,9 +160,6 @@ alerts_queue(struct window *w, int flags)
|
||||
{
|
||||
alerts_reset(w);
|
||||
|
||||
if (!event_initialized(&w->alerts_timer))
|
||||
evtimer_set(&w->alerts_timer, alerts_timer, w);
|
||||
|
||||
if ((w->flags & flags) != flags) {
|
||||
w->flags |= flags;
|
||||
log_debug("@%u alerts flags added %#x", w->id, flags);
|
||||
|
Loading…
Reference in New Issue
Block a user