mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 16:35:41 +01:00
Fix whitespace of 369e6c20
.
This commit is contained in:
parent
c531b4af3c
commit
99b9259f76
@ -270,8 +270,7 @@ int asn1_get_sequence_of( unsigned char **p,
|
|||||||
/* Allocate and assign next pointer */
|
/* Allocate and assign next pointer */
|
||||||
if( *p < end )
|
if( *p < end )
|
||||||
{
|
{
|
||||||
cur->next = polarssl_malloc(
|
cur->next = polarssl_malloc( sizeof( asn1_sequence ) );
|
||||||
sizeof( asn1_sequence ) );
|
|
||||||
|
|
||||||
if( cur->next == NULL )
|
if( cur->next == NULL )
|
||||||
return( POLARSSL_ERR_ASN1_MALLOC_FAILED );
|
return( POLARSSL_ERR_ASN1_MALLOC_FAILED );
|
||||||
|
@ -259,8 +259,7 @@ int ssl_cache_set( void *data, const ssl_session *session )
|
|||||||
*/
|
*/
|
||||||
if( session->peer_cert != NULL )
|
if( session->peer_cert != NULL )
|
||||||
{
|
{
|
||||||
cur->peer_cert.p = polarssl_malloc(
|
cur->peer_cert.p = polarssl_malloc( session->peer_cert->raw.len );
|
||||||
session->peer_cert->raw.len );
|
|
||||||
if( cur->peer_cert.p == NULL )
|
if( cur->peer_cert.p == NULL )
|
||||||
{
|
{
|
||||||
ret = 1;
|
ret = 1;
|
||||||
|
@ -3545,20 +3545,17 @@ static int ssl_handshake_init( ssl_context *ssl )
|
|||||||
*/
|
*/
|
||||||
if( ssl->transform_negotiate == NULL )
|
if( ssl->transform_negotiate == NULL )
|
||||||
{
|
{
|
||||||
ssl->transform_negotiate = polarssl_malloc(
|
ssl->transform_negotiate = polarssl_malloc( sizeof(ssl_transform) );
|
||||||
sizeof(ssl_transform) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if( ssl->session_negotiate == NULL )
|
if( ssl->session_negotiate == NULL )
|
||||||
{
|
{
|
||||||
ssl->session_negotiate = polarssl_malloc(
|
ssl->session_negotiate = polarssl_malloc( sizeof(ssl_session) );
|
||||||
sizeof(ssl_session) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if( ssl->handshake == NULL )
|
if( ssl->handshake == NULL )
|
||||||
{
|
{
|
||||||
ssl->handshake =
|
ssl->handshake = polarssl_malloc( sizeof(ssl_handshake_params) );
|
||||||
polarssl_malloc( sizeof(ssl_handshake_params) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* All pointers should exist and can be directly freed without issue */
|
/* All pointers should exist and can be directly freed without issue */
|
||||||
@ -4065,8 +4062,7 @@ int ssl_set_psk( ssl_context *ssl, const unsigned char *psk, size_t psk_len,
|
|||||||
ssl->psk_identity_len = psk_identity_len;
|
ssl->psk_identity_len = psk_identity_len;
|
||||||
|
|
||||||
ssl->psk = polarssl_malloc( ssl->psk_len );
|
ssl->psk = polarssl_malloc( ssl->psk_len );
|
||||||
ssl->psk_identity =
|
ssl->psk_identity = polarssl_malloc( ssl->psk_identity_len );
|
||||||
polarssl_malloc( ssl->psk_identity_len );
|
|
||||||
|
|
||||||
if( ssl->psk == NULL || ssl->psk_identity == NULL )
|
if( ssl->psk == NULL || ssl->psk_identity == NULL )
|
||||||
return( POLARSSL_ERR_SSL_MALLOC_FAILED );
|
return( POLARSSL_ERR_SSL_MALLOC_FAILED );
|
||||||
|
@ -359,8 +359,7 @@ static int x509_get_subject_alt_name( unsigned char **p,
|
|||||||
if( cur->next != NULL )
|
if( cur->next != NULL )
|
||||||
return( POLARSSL_ERR_X509_INVALID_EXTENSIONS );
|
return( POLARSSL_ERR_X509_INVALID_EXTENSIONS );
|
||||||
|
|
||||||
cur->next = polarssl_malloc(
|
cur->next = polarssl_malloc( sizeof( asn1_sequence ) );
|
||||||
sizeof( asn1_sequence ) );
|
|
||||||
|
|
||||||
if( cur->next == NULL )
|
if( cur->next == NULL )
|
||||||
return( POLARSSL_ERR_X509_INVALID_EXTENSIONS +
|
return( POLARSSL_ERR_X509_INVALID_EXTENSIONS +
|
||||||
|
Loading…
Reference in New Issue
Block a user