| OLD | NEW |
| (Empty) |
| 1 diff --git a/net/third_party/nss/ssl/sslcon.c b/net/third_party/nss/ssl/sslcon.c | |
| 2 index 4e34554..be626a4 100644 | |
| 3 --- a/net/third_party/nss/ssl/sslcon.c | |
| 4 +++ b/net/third_party/nss/ssl/sslcon.c | |
| 5 @@ -1440,7 +1440,7 @@ ssl2_CreateSessionCypher(sslSocket *ss, sslSessionID *sid,
PRBool isClient) | |
| 6 writeKey.data = 0; | |
| 7 | |
| 8 PORT_Assert( ss->opt.noLocks || ssl_Have1stHandshakeLock(ss) ); | |
| 9 - if((ss->sec.ci.sid == 0)) | |
| 10 + if(ss->sec.ci.sid == 0) | |
| 11 goto sec_loser; /* don't crash if asserts are off */ | |
| 12 | |
| 13 /* Trying to cut down on all these switch statements that should be tables. | |
| OLD | NEW |