1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Free TLSCertificate memory

This commit is contained in:
James Booth 2016-03-08 20:25:36 +00:00
parent 5cabcf9b79
commit 1ddfa47313

View File

@ -411,6 +411,8 @@ tlscerts_free(TLSCertificate *cert)
free(cert->key_alg);
free(cert->signature_alg);
free(cert);
}
}