mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-26 02:37:08 +00:00
Fix uninitialized variable warnings.
Signed-off-by: Matthias Schulz <mschulz@hilscher.com>
This commit is contained in:
parent
4122c16abd
commit
9916b06ce7
@ -3632,7 +3632,7 @@ MBEDTLS_CHECK_RETURN_CRITICAL
|
||||
static int ssl_handle_possible_reconnect(mbedtls_ssl_context *ssl)
|
||||
{
|
||||
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
||||
size_t len;
|
||||
size_t len = 0;
|
||||
|
||||
if (ssl->conf->f_cookie_write == NULL ||
|
||||
ssl->conf->f_cookie_check == NULL) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user