fix: skip saving if nil cache (#219)

This commit is contained in:
Gaukas Wang 2023-08-10 23:12:54 -06:00 committed by GitHub
parent a998534bf3
commit d74571af51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
}