clone TLS conf in newClient (#3400)

Fixes #3394
This commit is contained in:
Didrik Nordström 2022-05-12 03:27:25 -07:00 committed by GitHub
parent 0a08d62dea
commit d39a33f921
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -231,6 +231,8 @@ func newClient(
) (*client, error) {
if tlsConf == nil {
tlsConf = &tls.Config{}
} else {
tlsConf = tlsConf.Clone()
}
if tlsConf.ServerName == "" {
sni := host