summaryrefslogtreecommitdiffstats
path: root/thirdparty/mbedtls/library/entropy.c
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2024-08-31 15:25:10 +0200
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2024-08-31 15:35:37 +0200
commit4ac1f9c08a0e40c01f2b7024de51ecd23a68eec3 (patch)
treefdc1005eed758865923a0b17eb525dd6fb488d73 /thirdparty/mbedtls/library/entropy.c
parent40b378e9e2338d84f897f6991cc913a713295785 (diff)
downloadredot-engine-4ac1f9c08a0e40c01f2b7024de51ecd23a68eec3.tar.gz
[mbedTLS] Update to 3.6.1
Diffstat (limited to 'thirdparty/mbedtls/library/entropy.c')
-rw-r--r--thirdparty/mbedtls/library/entropy.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/thirdparty/mbedtls/library/entropy.c b/thirdparty/mbedtls/library/entropy.c
index e3bc8516e2..7dcf067a52 100644
--- a/thirdparty/mbedtls/library/entropy.c
+++ b/thirdparty/mbedtls/library/entropy.c
@@ -61,6 +61,10 @@ void mbedtls_entropy_init(mbedtls_entropy_context *ctx)
void mbedtls_entropy_free(mbedtls_entropy_context *ctx)
{
+ if (ctx == NULL) {
+ return;
+ }
+
/* If the context was already free, don't call free() again.
* This is important for mutexes which don't allow double-free. */
if (ctx->accumulator_started == -1) {