Module Name: src
Committed By: msaitoh
Date: Fri Apr 24 05:48:35 UTC 2015
Modified Files:
src/doc [netbsd-5]: CHANGES-5.3
Log Message:
Ticket 1957.
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.111 -r1.1.2.112 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.111 src/doc/CHANGES-5.3:1.1.2.112
--- src/doc/CHANGES-5.3:1.1.2.111 Sun Apr 19 07:45:47 2015
+++ src/doc/CHANGES-5.3 Fri Apr 24 05:48:35 2015
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.3,v 1.1.2.111 2015/04/19 07:45:47 msaitoh Exp $
+# $NetBSD: CHANGES-5.3,v 1.1.2.112 2015/04/24 05:48:35 msaitoh Exp $
A complete list of changes from the NetBSD 5.2 release to the NetBSD 5.3
release:
@@ -3832,3 +3832,11 @@ lib/libc/arch/sh3/gen/swapcontext.S 1.1
Correctly preserve old sate in swapcontext(3).
Fixes PR port-sh3/49597 reported by Yasushi Oshima.
[uwe, ticket #1960]
+
+sys/kern/sys_select.c patch
+
+ Limit nfds arg to poll() to a large enough value that user programs
+ cannot allocate indefinite sized blocks of kvm. If the limit is
+ exceeded, then return EINVAL instead of silently truncating the list.
+ Addresses PR/17507.
+ [prlw1, ticket #1957]