1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-04 17:04:49 +00:00

Bump mbedtls to version 2.16.10.

This commit is contained in:
Fabio Alessandrelli
2021-03-12 18:27:58 +01:00
parent f1e810adcb
commit 18bc1f2a8f
21 changed files with 372 additions and 63 deletions

View File

@@ -73,6 +73,9 @@ extern "C" {
typedef struct mbedtls_threading_mutex_t
{
pthread_mutex_t mutex;
/* is_valid is 0 after a failed init or a free, and nonzero after a
* successful init. This field is not considered part of the public
* API of Mbed TLS and may change without notice. */
char is_valid;
} mbedtls_threading_mutex_t;
#endif