fix: skip saving if nil cache

This commit is contained in:
Gaukas Wang 2023-08-10 14:30:27 -06:00
parent a998534bf3
commit f611e7177c
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D

View file

@ -941,7 +941,11 @@ func (hs *clientHandshakeState) saveSessionTicket() error {
session.secret = hs.masterSecret
cs := &ClientSessionState{ticket: hs.ticket, session: session}
c.config.ClientSessionCache.Put(cacheKey, cs)
// [UTLS BEGIN]
if c.config.ClientSessionCache != nil { // skip saving session if cache is nil
c.config.ClientSessionCache.Put(cacheKey, cs)
}
// [UTLS END]
return nil
}