mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
[Crypto] Delete mbedtls ctx in deconstructor.
Would cause memory leak when the context was `start`ed but not `finish`ed.
This commit is contained in:
parent
a525e77740
commit
a28d25c441
3 changed files with 9 additions and 0 deletions
|
@ -249,6 +249,13 @@ PackedByteArray HMACContextMbedTLS::finish() {
|
|||
return out;
|
||||
}
|
||||
|
||||
HMACContextMbedTLS::~HMACContextMbedTLS() {
|
||||
if (ctx != nullptr) {
|
||||
mbedtls_md_free((mbedtls_md_context_t *)ctx);
|
||||
memfree((mbedtls_md_context_t *)ctx);
|
||||
}
|
||||
}
|
||||
|
||||
Crypto *CryptoMbedTLS::create() {
|
||||
return memnew(CryptoMbedTLS);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue