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

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

Issue 1134493002: Fix NSS locking bug when sending no_renegotiate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « net/third_party/nss/patches/applypatches.sh ('k') | net/third_party/nss/ssl/ssl3con.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 diff --git a/ssl/ssl3con.c b/ssl/ssl3con.c
2 index 424c1fb..89c98ea 100644
3 --- a/ssl/ssl3con.c
4 +++ b/ssl/ssl3con.c
5 @@ -5532,9 +5532,7 @@ ssl3_HandleHelloRequest(sslSocket *ss)
6 return SECFailure;
7 }
8 if (ss->opt.enableRenegotiation == SSL_RENEGOTIATE_NEVER) {
9 - ssl_GetXmitBufLock(ss);
10 - rv = SSL3_SendAlert(ss, alert_warning, no_renegotiation);
11 - ssl_ReleaseXmitBufLock(ss);
12 + (void)SSL3_SendAlert(ss, alert_warning, no_renegotiation);
13 PORT_SetError(SSL_ERROR_RENEGOTIATION_NOT_ALLOWED);
14 return SECFailure;
15 }
OLDNEW
« no previous file with comments | « net/third_party/nss/patches/applypatches.sh ('k') | net/third_party/nss/ssl/ssl3con.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698