mbedtls/ChangeLog.d/fix_memsan_build_clang11.txt
Paul Elliott fb91a48616 Fix memsan build with clang 11
Memsan build was reporting a false positive use of uninitialised memory
in x509_crt.c on a struct filled by an _stat function call. According to
the man pages, the element reported has to be filled in by the call, so
to be safe, and keep memsan happy, zero the struct first.

Signed-off-by: Paul Elliott <paul.elliott@arm.com>
2021-03-05 14:24:03 +00:00

3 lines
73 B
Plaintext

Changes
* Fix memsan build false positive in x509_crt.c with clang 11