mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
fix: don't deref nil ptr (#214)
This commit is contained in:
parent
835e073578
commit
30a2200750
1 changed files with 3 additions and 1 deletions
|
@ -2092,7 +2092,9 @@ func (uconn *UConn) ApplyPreset(p *ClientHelloSpec) error {
|
||||||
if session == nil && uconn.config.ClientSessionCache != nil {
|
if session == nil && uconn.config.ClientSessionCache != nil {
|
||||||
cacheKey := uconn.clientSessionCacheKey()
|
cacheKey := uconn.clientSessionCacheKey()
|
||||||
cs, _ = uconn.config.ClientSessionCache.Get(cacheKey)
|
cs, _ = uconn.config.ClientSessionCache.Get(cacheKey)
|
||||||
session = cs.session
|
if cs != nil {
|
||||||
|
session = cs.session
|
||||||
|
}
|
||||||
// TODO: use uconn.loadSession(hello.getPrivateObj()) to support TLS 1.3 PSK-style resumption
|
// TODO: use uconn.loadSession(hello.getPrivateObj()) to support TLS 1.3 PSK-style resumption
|
||||||
}
|
}
|
||||||
err := uconn.SetSessionState(cs)
|
err := uconn.SetSessionState(cs)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue