Skip to content

Commit 615f5cd

Browse files
RafaelGSSsmithc
andcommitted
deps: call OPENSSL_free after ANS1_STRING_to_UTF8
Co-Authored-By: Chris Smith <chrismith@vista.com> Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com>
1 parent e72761f commit 615f5cd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

deps/ncrypto/ncrypto.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4666,6 +4666,9 @@ std::pair<std::string, std::string> X509Name::Iterator::operator*() const {
46664666
unsigned char* value_str;
46674667
int value_str_size = ASN1_STRING_to_UTF8(&value_str, value);
46684668

4669+
std::string out(reinterpret_cast<const char*>(value_str), value_str_size);
4670+
OPENSSL_free(value_str); // free after copy
4671+
46694672
return {
46704673
std::move(name_str),
46714674
std::string(reinterpret_cast<const char*>(value_str), value_str_size)};

0 commit comments

Comments
 (0)