Module Name: src Committed By: sborrill Date: Fri Dec 13 12:23:52 UTC 2013
Modified Files: src/doc [netbsd-5]: CHANGES-5.3 Log Message: Ticket #1891 To generate a diff of this commit: cvs rdiff -u -r1.1.2.38 -r1.1.2.39 src/doc/CHANGES-5.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/doc/CHANGES-5.3 diff -u src/doc/CHANGES-5.3:1.1.2.38 src/doc/CHANGES-5.3:1.1.2.39 --- src/doc/CHANGES-5.3:1.1.2.38 Wed Dec 11 16:01:26 2013 +++ src/doc/CHANGES-5.3 Fri Dec 13 12:23:52 2013 @@ -1,4 +1,4 @@ -# $NetBSD: CHANGES-5.3,v 1.1.2.38 2013/12/11 16:01:26 sborrill Exp $ +# $NetBSD: CHANGES-5.3,v 1.1.2.39 2013/12/13 12:23:52 sborrill Exp $ A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.3 release: @@ -645,3 +645,10 @@ sys/arch/xen/xen/evtchn.c 1.70 but related to spin mutexes. Fixes port-xen/46313 [bouyer, ticket #1890] +sys/kern/uipc_syscalls.c 1.163 + + If the unix socket is closed before accept, the mbuf returned + by m_get() will have an uninitialized length and contain junk + from a previous call. Initialize m_len to be 0 to handle this + case. Fixes PR/47591 +