Module Name: src
Committed By: riz
Date: Sun Jun 13 18:16:30 UTC 2010
Modified Files:
src/doc [netbsd-4]: CHANGES-4.1
Log Message:
Tickets 1393-1396.
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.201 -r1.1.2.202 src/doc/CHANGES-4.1
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-4.1
diff -u src/doc/CHANGES-4.1:1.1.2.201 src/doc/CHANGES-4.1:1.1.2.202
--- src/doc/CHANGES-4.1:1.1.2.201 Sun Jun 13 06:01:35 2010
+++ src/doc/CHANGES-4.1 Sun Jun 13 18:16:30 2010
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-4.1,v 1.1.2.201 2010/06/13 06:01:35 riz Exp $
+# $NetBSD: CHANGES-4.1,v 1.1.2.202 2010/06/13 18:16:30 riz Exp $
A complete list of changes from the NetBSD 4.0 release to the NetBSD 4.1
release:
@@ -4153,3 +4153,27 @@
Libfetch 2.31 import.
[joerg, ticket #1390]
+sys/net/bpf_filter.c 1.36
+
+ The correct check for BPF_K is with BPF_SRC for BPF_ALU ops.
+ Fixes possible division-by-zero crashes by evil filter expressions
+ like "len / 0 = 1". Fixes PR kern/43185.
+ [drochner, ticket #1393]
+
+lib/libusbhid/data.c 1.6
+
+ hid_get_data() will read an extra byte if the data being read ends on
+ a byte boundary. Fix this by rounding up and ending the loop
+ one earlier.
+ [plunky, ticket #1394]
+
+libexec/ftpd/popen.c 1.37
+
+ Fix ftpd remote crash. (From FreeBSD) PR#43023.
+ [dholland, ticket #1395]
+
+bin/date/date.c 1.53
+
+ Don't blow up on date +''. PR#39392.
+ [dholland, ticket #1396]
+