mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-03-22 21:22:58 +00:00
* The variables `csr` and `issuer_crt` are initialized but not freed. * The variable `entropy` is unconditionally freed in the cleanup section but there's a conditional jump to that section before its initialization. This cmmot Moves it to the other initializations happening before the first conditional jump to the cleanup section. Fixes #1422.