mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
[mbedTLS] Update to 3.6.1
This commit is contained in:
parent
40b378e9e2
commit
4ac1f9c08a
68 changed files with 1783 additions and 967 deletions
4
thirdparty/mbedtls/library/x509write_csr.c
vendored
4
thirdparty/mbedtls/library/x509write_csr.c
vendored
|
|
@ -43,6 +43,10 @@ void mbedtls_x509write_csr_init(mbedtls_x509write_csr *ctx)
|
|||
|
||||
void mbedtls_x509write_csr_free(mbedtls_x509write_csr *ctx)
|
||||
{
|
||||
if (ctx == NULL) {
|
||||
return;
|
||||
}
|
||||
|
||||
mbedtls_asn1_free_named_data_list(&ctx->subject);
|
||||
mbedtls_asn1_free_named_data_list(&ctx->extensions);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue