diff --git a/ChangeLog.d/fix-windows-cmake-build-with-shared-libraries.txt b/ChangeLog.d/fix-windows-cmake-build-with-shared-libraries.txt index 687864523..a6540a1aa 100644 --- a/ChangeLog.d/fix-windows-cmake-build-with-shared-libraries.txt +++ b/ChangeLog.d/fix-windows-cmake-build-with-shared-libraries.txt @@ -1,3 +1,3 @@ Bugfix - * Fix compilation on Windows when building shared library, by setting - library search path to CMAKE_CURRENT_BINARY_DIR. + * Fix the library search path when building a shared library with CMake + on Windows. diff --git a/ChangeLog.d/fix-x25519-program.txt b/ChangeLog.d/fix-x25519-program.txt index af60465b5..bf5d6ac39 100644 --- a/ChangeLog.d/fix-x25519-program.txt +++ b/ChangeLog.d/fix-x25519-program.txt @@ -1,4 +1,4 @@ Bugfix - * Fix a bug in x25519 example program where the removal of + * Fix a bug in the x25519 example program where the removal of MBEDTLS_ECDH_LEGACY_CONTEXT caused the program not to run. Fixes #4901 and #3191. diff --git a/ChangeLog.d/mbedtls_ssl_config_defaults-memleak.txt b/ChangeLog.d/mbedtls_ssl_config_defaults-memleak.txt index d55c01631..043b273c7 100644 --- a/ChangeLog.d/mbedtls_ssl_config_defaults-memleak.txt +++ b/ChangeLog.d/mbedtls_ssl_config_defaults-memleak.txt @@ -1,2 +1,2 @@ Bugfix - * Fix memory leak if mbedtls_ssl_config_defaults() call is repeated + * Fix a memory leak if mbedtls_ssl_config_defaults() is called twice. diff --git a/ChangeLog.d/raw-agreement-destroy-missing.txt b/ChangeLog.d/raw-agreement-destroy-missing.txt deleted file mode 100644 index 7342b8cfa..000000000 --- a/ChangeLog.d/raw-agreement-destroy-missing.txt +++ /dev/null @@ -1,3 +0,0 @@ -Bugfix - * Add missing key slot destruction calls when a raw key agreement or - a public key export fails in ssl_write_client_key_exchange. diff --git a/ChangeLog.d/use-psa-ecdhe-curve.txt b/ChangeLog.d/use-psa-ecdhe-curve.txt index cc432bdae..658f88f84 100644 --- a/ChangeLog.d/use-psa-ecdhe-curve.txt +++ b/ChangeLog.d/use-psa-ecdhe-curve.txt @@ -4,4 +4,4 @@ Bugfix client would fail to check that the curve selected by the server for ECDHE was indeed one that was offered. As a result, the client would accept any curve that it supported, even if that curve was not allowed - according to its configuration. + according to its configuration. Fixes #5291.