fix: don't deref nil ptr (#214)

This commit is contained in:
3andne 2023-08-08 18:17:43 -07:00 committed by GitHub
parent 835e073578
commit 30a2200750
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2092,7 +2092,9 @@ func (uconn *UConn) ApplyPreset(p *ClientHelloSpec) error {
if session == nil && uconn.config.ClientSessionCache != nil {
cacheKey := uconn.clientSessionCacheKey()
cs, _ = uconn.config.ClientSessionCache.Get(cacheKey)
if cs != nil {
session = cs.session
}
// TODO: use uconn.loadSession(hello.getPrivateObj()) to support TLS 1.3 PSK-style resumption
}
err := uconn.SetSessionState(cs)