Module Name: src
Committed By: msaitoh
Date: Fri Aug 8 06:59:33 UTC 2014
Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5
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.1.5
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.1.5
diff -u src/doc/CHANGES-5.1.5:1.1.2.12 src/doc/CHANGES-5.1.5:1.1.2.13
--- src/doc/CHANGES-5.1.5:1.1.2.12 Mon Jul 14 09:17:04 2014
+++ src/doc/CHANGES-5.1.5 Fri Aug 8 06:59:32 2014
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.5,v 1.1.2.12 2014/07/14 09:17:04 msaitoh Exp $
+# $NetBSD: CHANGES-5.1.5,v 1.1.2.13 2014/08/08 06:59:32 msaitoh Exp $
A complete list of changes from the NetBSD 5.1.4 release to the NetBSD 5.1.5
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]