commit | 4807df41ad7871f5fcf0e4568c71f8e101eb5738 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Sun Jun 23 15:15:10 2013 +0200 |
committer | Victor Stinner <victor.stinner@gmail.com> | Sun Jun 23 15:15:10 2013 +0200 |
tree | b3d8a59cfc86821644785bed966f7671ee50e43e | |
parent | 760388100e2cc21c5d58a9014db5426e6107b5e4 [diff] [blame] |
Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write() for strings longer than 2 gigabytes.
diff --git a/Misc/NEWS b/Misc/NEWS index b455366..d7e15f3 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -21,6 +21,9 @@ Library ------- +- Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write() + for strings longer than 2 gigabytes. + - Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-data when \r\n appears at end of 65535 bytes without other newlines.