OLD | NEW |
(Empty) | |
| 1 diff --git a/net/third_party/nss/ssl/sslsock.c b/net/third_party/nss/ssl/sslsock
.c |
| 2 index fd71aee..9464b67 100644 |
| 3 --- a/net/third_party/nss/ssl/sslsock.c |
| 4 +++ b/net/third_party/nss/ssl/sslsock.c |
| 5 @@ -3095,6 +3095,7 @@ ssl_NewSocket(PRBool makeLocks, SSLProtocolVariant protoco
lVariant) |
| 6 ss->ephemeralECDHKeyPair = NULL; |
| 7 ss->getChannelID = NULL; |
| 8 ss->getChannelIDArg = NULL; |
| 9 + ss->protocolVariant = protocolVariant; |
| 10 |
| 11 ssl_ChooseOps(ss); |
| 12 ssl2_InitSocketPolicy(ss); |
| 13 @@ -3117,7 +3118,6 @@ loser: |
| 14 PORT_Free(ss); |
| 15 ss = NULL; |
| 16 } |
| 17 - ss->protocolVariant = protocolVariant; |
| 18 } |
| 19 return ss; |
| 20 } |
OLD | NEW |