Tue May 26 19:19:08 2009 UTC ()
Ticket 774.


(snj)
diff -r1.1.2.13 -r1.1.2.14 src/doc/CHANGES-5.0.1

cvs diff -r1.1.2.13 -r1.1.2.14 src/doc/Attic/CHANGES-5.0.1 (expand / switch to unified diff)

--- src/doc/Attic/CHANGES-5.0.1 2009/05/26 04:23:05 1.1.2.13
+++ src/doc/Attic/CHANGES-5.0.1 2009/05/26 19:19:08 1.1.2.14
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: CHANGES-5.0.1,v 1.1.2.13 2009/05/26 04:23:05 snj Exp $ 1# $NetBSD: CHANGES-5.0.1,v 1.1.2.14 2009/05/26 19:19:08 snj Exp $
2 2
3A complete list of changes from the NetBSD 5.0 release to the NetBSD 5.0.1 3A complete list of changes from the NetBSD 5.0 release to the NetBSD 5.0.1
4release: 4release:
5 5
6gnu/usr.bin/groff/tmac/mdoc.local patched by hand 6gnu/usr.bin/groff/tmac/mdoc.local patched by hand
7sys/sys/param.h patched by hand 7sys/sys/param.h patched by hand
8 8
9 Welcome to 5.0.0_PATCH. 9 Welcome to 5.0.0_PATCH.
10 [snj] 10 [snj]
11 11
12sys/kern/uipc_socket.c 1.189 12sys/kern/uipc_socket.c 1.189
13 13
14 PR kern/41311: Mutex error: mutex_vector_enter: locking against myself 14 PR kern/41311: Mutex error: mutex_vector_enter: locking against myself
@@ -125,13 +125,24 @@ share/man/man7/sysctl.7 1.22 via patc @@ -125,13 +125,24 @@ share/man/man7/sysctl.7 1.22 via patc
125 125
126sys/arch/vax/include/mtpr.h 1.21, 1.22 126sys/arch/vax/include/mtpr.h 1.21, 1.22
127 127
128 Add "memory" clobber to mtpr for barrier. See also kern/38637. 128 Add "memory" clobber to mtpr for barrier. See also kern/38637.
129 [mhitch, ticket #767] 129 [mhitch, ticket #767]
130 130
131dist/ntp/ntpd/ntp_crypto.c 1.15 131dist/ntp/ntpd/ntp_crypto.c 1.15
132 132
133 Fix CVE-2009-1252: Buffer overflow in ntpd crypto code. A remote 133 Fix CVE-2009-1252: Buffer overflow in ntpd crypto code. A remote
134 attacker can send a specially constructed request packet that 134 attacker can send a specially constructed request packet that
135 would overflow the sprintf()'ed buffer causing ntpd to crash. 135 would overflow the sprintf()'ed buffer causing ntpd to crash.
136 [dholland, ticket #777] 136 [dholland, ticket #777]
137 137
 138sys/arch/sparc64/sparc64/vm_machdep.c 1.88
 139
 140 When preparing the initial trap frame for a new forked lwp,
 141 explicitly clear condition code. Otherwise we might catch a signal
 142 (handlers are inherited from the parent) before we ever return to
 143 userland. The current trapframe is converted into a ucontext and
 144 after the signal handler returns, the lwp stays in userland and
 145 directly uses the ucontext to return to the fork call.
 146 Fixes PR 41302.
 147 [martin, ticket #774]
 148