1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-05 19:35:48 +03:00

Merge pull request #7835 from gilles-peskine-arm/ssl_premaster_secret-empty-3.4

Fix empty union when TLS is disabled
This commit is contained in:
Gilles Peskine
2023-07-27 08:28:21 +00:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -619,6 +619,7 @@
/* Dummy type used only for its size */
union mbedtls_ssl_premaster_secret {
unsigned char dummy; /* Make the union non-empty even with SSL disabled */
#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED)
unsigned char _pms_rsa[48]; /* RFC 5246 8.1.1 */
#endif