summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorty <zonyitoo@users.noreply.github.com>2022-03-27 20:22:22 (GMT)
committerGitHub <noreply@github.com>2022-03-27 20:22:22 (GMT)
commitf6b3a07b7df60dc04d0260169ffef6e9796a2124 (patch)
tree637ec249702ec8780825ad01f7ba3cd1a90c3696 /Misc
parent58448cbd96f77ebc6fca1f8030bedc7744eb66ef (diff)
downloadcpython-f6b3a07b7df60dc04d0260169ffef6e9796a2124.zip
cpython-f6b3a07b7df60dc04d0260169ffef6e9796a2124.tar.gz
cpython-f6b3a07b7df60dc04d0260169ffef6e9796a2124.tar.bz2
bpo-44493: Add missing terminated NUL in sockaddr_un's length (GH-26866)
Add missing terminated NUL in sockaddr_un's length - Linux: https://man7.org/linux/man-pages/man7/unix.7.html - *BSD: SUN_LEN
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-07-26-10-46-49.bpo-44493.xp3CRH.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-07-26-10-46-49.bpo-44493.xp3CRH.rst b/Misc/NEWS.d/next/Library/2021-07-26-10-46-49.bpo-44493.xp3CRH.rst
new file mode 100644
index 0000000..390a722
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-07-26-10-46-49.bpo-44493.xp3CRH.rst
@@ -0,0 +1,3 @@
+Add missing terminated NUL in sockaddr_un's length
+
+This was potentially observable when using non-abstract AF_UNIX datagram sockets to processes written in another programming language.