bpo-42144: Add a missing "goto error;" in the _ssl module (GH-22959)

This commit is contained in:
Zackery Spytz 2020-10-25 12:02:30 -06:00 committed by GitHub
parent 3cde3788b6
commit c32f2976b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -899,6 +899,7 @@ _ssl_configure_hostname(PySSLSocket *self, const char* server_hostname)
if (ip == NULL) {
if (!SSL_set_tlsext_host_name(self->ssl, server_hostname)) {
_setSSLError(NULL, 0, __FILE__, __LINE__);
goto error;
}
}
if (self->ctx->check_hostname) {