mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	Reset in/out pointers on SSL session reset
If a previous session was interrupted during flushing, the out pointers might point arbitrarily into the output buffer.
This commit is contained in:
		
							parent
							
								
									4ccbf064ed
								
							
						
					
					
						commit
						f29d4702f7
					
				@ -6300,8 +6300,8 @@ static int ssl_session_reset_int( mbedtls_ssl_context *ssl, int partial )
 | 
			
		||||
    ssl->secure_renegotiation = MBEDTLS_SSL_LEGACY_RENEGOTIATION;
 | 
			
		||||
 | 
			
		||||
    ssl->in_offt = NULL;
 | 
			
		||||
    ssl_reset_in_out_pointers( ssl );
 | 
			
		||||
 | 
			
		||||
    ssl->in_msg = ssl->in_buf + 13;
 | 
			
		||||
    ssl->in_msgtype = 0;
 | 
			
		||||
    ssl->in_msglen = 0;
 | 
			
		||||
#if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
			
		||||
@ -6317,7 +6317,6 @@ static int ssl_session_reset_int( mbedtls_ssl_context *ssl, int partial )
 | 
			
		||||
 | 
			
		||||
    ssl->keep_current_message = 0;
 | 
			
		||||
 | 
			
		||||
    ssl->out_msg = ssl->out_buf + 13;
 | 
			
		||||
    ssl->out_msgtype = 0;
 | 
			
		||||
    ssl->out_msglen = 0;
 | 
			
		||||
    ssl->out_left = 0;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user