Module Name: src
Committed By: msaitoh
Date: Fri Aug 8 06:59:13 UTC 2014
Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3
Log Message:
Ticket 1916.
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.12 -r1.1.2.13 src/doc/CHANGES-5.2.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.2.3
diff -u src/doc/CHANGES-5.2.3:1.1.2.12 src/doc/CHANGES-5.2.3:1.1.2.13
--- src/doc/CHANGES-5.2.3:1.1.2.12 Mon Jul 14 09:16:12 2014
+++ src/doc/CHANGES-5.2.3 Fri Aug 8 06:59:13 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.2.3,v 1.1.2.12 2014/07/14 09:16:12 msaitoh Exp $
+# $NetBSD: CHANGES-5.2.3,v 1.1.2.13 2014/08/08 06:59:13 msaitoh Exp $
A complete list of changes from the NetBSD 5.2.2 release to the NetBSD 5.2.3
release:
@@ -189,3 +189,10 @@ sys/kern/sys_module.c 1.15 via patch
Fix a user-controlled memory allocation.
[maxv, ticket #1914]
+
+sys/compat/linux/common/linux_socketcall.c 1.44
+sys/compat/linux32/common/linux32_socketcall.c 1.9
+
+ If SCARG(uap, what) = 0, copyin() will copy (size_t)-1 bytes, and it's
+ not a good idea; but not proven harmful. With the help of njoly@.
+ [maxv, ticket #1916]