Merge pull request #5240 from duckpowermb/development
[session] fix a session copy bug
This commit is contained in:
commit
b873577fc3
1 changed files with 4 additions and 0 deletions
|
@ -184,6 +184,10 @@ int mbedtls_ssl_session_copy( mbedtls_ssl_session *dst,
|
|||
mbedtls_ssl_session_free( dst );
|
||||
memcpy( dst, src, sizeof( mbedtls_ssl_session ) );
|
||||
|
||||
#if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_CLI_C)
|
||||
dst->ticket = NULL;
|
||||
#endif
|
||||
|
||||
#if defined(MBEDTLS_X509_CRT_PARSE_C)
|
||||
|
||||
#if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
|
||||
|
|
Loading…
Reference in a new issue