mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	ax25: Fix segfault after sock connection timeout
The ax.25 socket connection timed out & the sock struct has been previously taken down ie. sock struct is now a NULL pointer. Checking the sock_flag causes the segfault. Check if the socket struct pointer is NULL before checking sock_flag. This segfault is seen in timed out netrom connections. Please submit to -stable. Signed-off-by: Basil Gunn <basil@pacabunga.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									f1f7714ea5
								
							
						
					
					
						commit
						8a367e74c0
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -264,7 +264,7 @@ void ax25_disconnect(ax25_cb *ax25, int reason)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	ax25_clear_queues(ax25);
 | 
						ax25_clear_queues(ax25);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!sock_flag(ax25->sk, SOCK_DESTROY))
 | 
						if (!ax25->sk || !sock_flag(ax25->sk, SOCK_DESTROY))
 | 
				
			||||||
		ax25_stop_heartbeat(ax25);
 | 
							ax25_stop_heartbeat(ax25);
 | 
				
			||||||
	ax25_stop_t1timer(ax25);
 | 
						ax25_stop_t1timer(ax25);
 | 
				
			||||||
	ax25_stop_t2timer(ax25);
 | 
						ax25_stop_t2timer(ax25);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue