mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
Fix removing session state
Probably we should check that state is nil rather than the map?
This commit is contained in:
parent
8094658e76
commit
6b4cac1f02
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ func (csc *ClientSessionCache) Get(sessionKey string) (session *tls.ClientSessio
|
|||
}
|
||||
|
||||
func (csc *ClientSessionCache) Put(sessionKey string, cs *tls.ClientSessionState) {
|
||||
if csc.sessionKeyMap == nil {
|
||||
if cs == nil {
|
||||
fmt.Printf("Deleting session for %s\n", sessionKey)
|
||||
delete(csc.sessionKeyMap, sessionKey)
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue