mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-03 20:22:59 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			269 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			269 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
@@
 | 
						|
expression x, y;
 | 
						|
statement S;
 | 
						|
@@
 | 
						|
  x = mbedtls_malloc(...);
 | 
						|
  y = mbedtls_malloc(...);
 | 
						|
  ...
 | 
						|
* if (x == NULL || y == NULL)
 | 
						|
    S
 | 
						|
 | 
						|
@@
 | 
						|
expression x, y;
 | 
						|
statement S;
 | 
						|
@@
 | 
						|
  if (
 | 
						|
*   (x = mbedtls_malloc(...)) == NULL
 | 
						|
    ||
 | 
						|
*   (y = mbedtls_malloc(...)) == NULL
 | 
						|
  )
 | 
						|
    S
 |