mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-25 08:29:01 +00:00
Resource leak fix on windows platform
Fix a resource leak on windows platform, in mbedtls_x509_crt_parse_path, in case a failure. when an error occurs, goto cleanup, and free the resource, instead of returning error code immediately.
This commit is contained in:
parent
5843db932d
commit
b2d6e591f9
1 changed files with 3 additions and 0 deletions
|
@ -8,6 +8,9 @@ Bugfix
|
||||||
* Replace preproccessor condition from #if defined(MBEDTLS_THREADING_PTHREAD)
|
* Replace preproccessor condition from #if defined(MBEDTLS_THREADING_PTHREAD)
|
||||||
to #if defined(MBEDTLS_THREADING_C) as the library cannot assume they will
|
to #if defined(MBEDTLS_THREADING_C) as the library cannot assume they will
|
||||||
always be implemented by pthread support. Fix for #696
|
always be implemented by pthread support. Fix for #696
|
||||||
|
* Fix resource leak on windows platform, in mbedtls_x509_crt_parse_path.
|
||||||
|
In case of failure, when an error occures, goto cleanup.
|
||||||
|
Found by redplait #590
|
||||||
|
|
||||||
Features
|
Features
|
||||||
* Add the functions mbedtls_platform_setup() and mbedtls_platform_teardown()
|
* Add the functions mbedtls_platform_setup() and mbedtls_platform_teardown()
|
||||||
|
|
Loading…
Reference in a new issue