mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-11 11:25:28 +00:00
Move comment to a separate line
This commit is contained in:
parent
21feae58cb
commit
c9a5f02eab
|
@ -5678,7 +5678,9 @@ int mbedtls_ssl_setup( mbedtls_ssl_context *ssl,
|
||||||
/*
|
/*
|
||||||
* Prepare base structures
|
* Prepare base structures
|
||||||
*/
|
*/
|
||||||
ssl->out_buf = NULL; /* Set to NULL in case of an error condition */
|
|
||||||
|
/* Set to NULL in case of an error condition */
|
||||||
|
ssl->out_buf = NULL;
|
||||||
|
|
||||||
ssl->in_buf = mbedtls_calloc( 1, MBEDTLS_SSL_IN_BUFFER_LEN );
|
ssl->in_buf = mbedtls_calloc( 1, MBEDTLS_SSL_IN_BUFFER_LEN );
|
||||||
if( ssl->in_buf == NULL )
|
if( ssl->in_buf == NULL )
|
||||||
|
|
Loading…
Reference in a new issue