diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-08-31 15:25:10 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-08-31 15:35:37 +0200 |
commit | 4ac1f9c08a0e40c01f2b7024de51ecd23a68eec3 (patch) | |
tree | fdc1005eed758865923a0b17eb525dd6fb488d73 /thirdparty/mbedtls/library/pem.c | |
parent | 40b378e9e2338d84f897f6991cc913a713295785 (diff) | |
download | redot-engine-4ac1f9c08a0e40c01f2b7024de51ecd23a68eec3.tar.gz |
[mbedTLS] Update to 3.6.1
Diffstat (limited to 'thirdparty/mbedtls/library/pem.c')
-rw-r--r-- | thirdparty/mbedtls/library/pem.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/thirdparty/mbedtls/library/pem.c b/thirdparty/mbedtls/library/pem.c index 0fee5df43a..0207601456 100644 --- a/thirdparty/mbedtls/library/pem.c +++ b/thirdparty/mbedtls/library/pem.c @@ -481,6 +481,10 @@ int mbedtls_pem_read_buffer(mbedtls_pem_context *ctx, const char *header, const void mbedtls_pem_free(mbedtls_pem_context *ctx) { + if (ctx == NULL) { + return; + } + if (ctx->buf != NULL) { mbedtls_zeroize_and_free(ctx->buf, ctx->buflen); } |