Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Side by Side Diff: net/third_party/nss/patches/clang-sslcon.patch

Issue 9733012: Update NSS to NSS 3.13.4 pre-release snapshot 20120319. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Forgot to update the sslerr.h and SSLerrs.h files Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698