Module Name: src Committed By: bouyer Date: Sun Mar 20 21:33:41 UTC 2011
Modified Files: src/doc [netbsd-5-0]: CHANGES-5.0.3 Log Message: tickets 1567, 1574 To generate a diff of this commit: cvs rdiff -u -r1.1.2.29 -r1.1.2.30 src/doc/CHANGES-5.0.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.0.3 diff -u src/doc/CHANGES-5.0.3:1.1.2.29 src/doc/CHANGES-5.0.3:1.1.2.30 --- src/doc/CHANGES-5.0.3:1.1.2.29 Tue Mar 8 17:44:16 2011 +++ src/doc/CHANGES-5.0.3 Sun Mar 20 21:33:41 2011 @@ -1,4 +1,4 @@ -# $NetBSD: CHANGES-5.0.3,v 1.1.2.29 2011/03/08 17:44:16 riz Exp $ +# $NetBSD: CHANGES-5.0.3,v 1.1.2.30 2011/03/20 21:33:41 bouyer Exp $ A complete list of changes from the NetBSD 5.0.2 release to the NetBSD 5.0.3 release: @@ -2588,3 +2588,17 @@ Add keys directory for recently updated BIND. [spz, ticket #1566] +sys/kern/vfs_syscalls.c 1.415 via patch + + Check for bogus flags to access() up front. Otherwise we end up + calling VOP_ACCESS with flags 0 and something asserts deep in the + bowels of kauth. PR 44648 from Taylor Campbell. (I moved the check + earlier relative to the suggested patch.) + [dholland, ticket #1567] + +lib/libc/inet/inet_net_pton.c 1.2 + + Check bits on each loop to prevent integer oveflow. + Reported by Maksymilian Arciemowicz + [spz, ticket #1574] +