Temporary introduce a memory leak in ssl_test

Making sure the ASan bot notices. This will be reverted in a minute.

Change-Id: Ib8acf21948e3638d54ab09f3df4c339c4ea3d649
This commit is contained in:
David Benjamin 2015-04-21 06:30:59 -04:00
parent 7cb4bcc6e7
commit 88d0f91952

View File

@ -432,7 +432,6 @@ static bool CipherGetRFCName(std::string *out, uint16_t value) {
}
char *rfc_name = SSL_CIPHER_get_rfc_name(cipher);
out->assign(rfc_name);
OPENSSL_free(rfc_name);
return true;
}