mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Initialize alerts timer event where it is used, avoids crash with new windows.
This commit is contained in:
		
							
								
								
									
										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);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user