mirror of
				https://git.haproxy.org/git/haproxy.git/
				synced 2025-10-31 00:21:00 +01:00 
			
		
		
		
	This replaces an if + ABORT_NOW() by BUG_ON(). It might change behavior, because BUG_ON will result in a no-op if not enabled.
		
			
				
	
	
		
			8 lines
		
	
	
		
			58 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			58 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| @@
 | |
| expression E;
 | |
| @@
 | |
| 
 | |
| - if (E)
 | |
| - ABORT_NOW();
 | |
| + BUG_ON(E);
 |