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

Side by Side Diff: net/third_party/nss/patches/disableticketrenewal.patch

Issue 111853013: Update net/third_party/nss to NSS 3.15.4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Update the comment in sslenum.c for the two CHACHA20 cipher suites Created 6 years, 11 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 Index: net/third_party/nss/ssl/sslnonce.c
2 ===================================================================
3 --- net/third_party/nss/ssl/sslnonce.c (revision 240143)
4 +++ net/third_party/nss/ssl/sslnonce.c (working copy)
5 @@ -438,6 +438,12 @@
6 /* We need to lock the cache, as this sid might already be in the cache. */
7 LOCK_CACHE;
8
9 + /* Don't modify sid if it has ever been cached. */
10 + if (sid->cached != never_cached) {
11 + UNLOCK_CACHE;
12 + return SECSuccess;
13 + }
14 +
15 /* A server might have sent us an empty ticket, which has the
16 * effect of clearing the previously known ticket.
17 */
OLDNEW
« no previous file with comments | « net/third_party/nss/patches/didhandshakeresume.patch ('k') | net/third_party/nss/patches/ecpointform.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698