register RSA_free directly as custom deleter

This commit is contained in:
Stephen Birarda 2016-03-28 10:51:47 -07:00
parent cffeece08e
commit 869529a435

View file

@ -245,7 +245,7 @@ void IceServer::publicKeyReplyFinished(QNetworkReply* reply) {
RSA* rsaPublicKey = d2i_RSA_PUBKEY(NULL, &publicKeyData, apiPublicKey.size());
if (rsaPublicKey) {
_domainPublicKeys[domainID] = { rsaPublicKey, [](RSA* rsa) { RSA_free(rsa); }};
_domainPublicKeys[domainID] = { rsaPublicKey, RSA_free };
} else {
qWarning() << "Could not convert in-memory public key for" << domainID << "to usable RSA public key.";
qWarning() << "Public key will be re-requested on next heartbeat.";