We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5166c26 commit 1461155Copy full SHA for 1461155
library/ssl_msg.c
@@ -3127,8 +3127,8 @@ int mbedtls_ssl_prepare_handshake_record(mbedtls_ssl_context *ssl)
3127
MBEDTLS_PRINTF_SIZET " from %p to %p (buf=%p len=%"
3128
MBEDTLS_PRINTF_SIZET ")",
3129
ssl->in_msglen,
3130
- ssl->in_msg, payload_end,
3131
- ssl->in_buf, in_buf_len));
+ (void *) ssl->in_msg, (void *) payload_end,
+ (void *) ssl->in_buf, in_buf_len));
3132
return MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
3133
}
3134
memmove(payload_end, ssl->in_msg, ssl->in_msglen);
0 commit comments