diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-11-09 16:00:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-09 16:00:38 (GMT) |
commit | d3187158c09cf899e9849f335bdff10594209167 (patch) | |
tree | 0663f87effd4b2aae80fcd0421a74a5f071985db /Misc | |
parent | 0a2ff23fe6efb1653d655ac19d0a4e1629fd8d95 (diff) | |
download | cpython-d3187158c09cf899e9849f335bdff10594209167.zip cpython-d3187158c09cf899e9849f335bdff10594209167.tar.gz cpython-d3187158c09cf899e9849f335bdff10594209167.tar.bz2 |
bpo-31927: Fix bugs in socketmodule.c on NetBSD and other issues. (#4235)
* Fix compilation of the socket module on NetBSD 8.
* Fix the assertion failure or reading arbitrary data when parse
a AF_BLUETOOTH address on NetBSD and DragonFly BSD.
* Fix other potential errors and make the code more reliable.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-11-02-18-26-40.bpo-31927.40K6kp.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-02-18-26-40.bpo-31927.40K6kp.rst b/Misc/NEWS.d/next/Library/2017-11-02-18-26-40.bpo-31927.40K6kp.rst new file mode 100644 index 0000000..49f8cdf --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-11-02-18-26-40.bpo-31927.40K6kp.rst @@ -0,0 +1,3 @@ +Fixed compilation of the socket module on NetBSD 8. Fixed assertion failure +or reading arbitrary data when parse a AF_BLUETOOTH address on NetBSD and +DragonFly BSD. |