diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2004-08-08 18:58:18 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2004-08-08 18:58:18 +0000 |
commit | 9725021002c14e869fbd6df40cdb329962861cef (patch) | |
tree | 8d6a4067ee5c677e747f7fa22e079f96bc749e45 /sys-kernel/ia64-sources | |
parent | Version bump for CAN-2004-0685, bug #59769. (Manifest recommit) (diff) | |
download | gentoo-2-9725021002c14e869fbd6df40cdb329962861cef.tar.gz gentoo-2-9725021002c14e869fbd6df40cdb329962861cef.tar.bz2 gentoo-2-9725021002c14e869fbd6df40cdb329962861cef.zip |
Version bump for CAN-2004-0685, bug #59769.
Diffstat (limited to 'sys-kernel/ia64-sources')
-rw-r--r-- | sys-kernel/ia64-sources/ChangeLog | 9 | ||||
-rw-r--r-- | sys-kernel/ia64-sources/files/digest-ia64-sources-2.4.24-r9 (renamed from sys-kernel/ia64-sources/files/digest-ia64-sources-2.4.24-r8) | 0 | ||||
-rw-r--r-- | sys-kernel/ia64-sources/files/ia64-sources-2.4.24.CAN-2004-0685.patch | 83 | ||||
-rw-r--r-- | sys-kernel/ia64-sources/ia64-sources-2.4.24-r9.ebuild (renamed from sys-kernel/ia64-sources/ia64-sources-2.4.24-r8.ebuild) | 3 |
4 files changed, 93 insertions, 2 deletions
diff --git a/sys-kernel/ia64-sources/ChangeLog b/sys-kernel/ia64-sources/ChangeLog index cdc3936cea64..6bc668c8fa21 100644 --- a/sys-kernel/ia64-sources/ChangeLog +++ b/sys-kernel/ia64-sources/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-kernel/ia64-sources # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ia64-sources/ChangeLog,v 1.21 2004/08/04 22:31:58 plasmaroo Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ia64-sources/ChangeLog,v 1.22 2004/08/08 18:58:18 plasmaroo Exp $ + +*ia64-sources-2.4.24-r9 (08 Aug 2004) + + 08 Aug 2004; <plasmaroo@gentoo.org> -ia64-sources-2.4.24-r8.ebuild, + +ia64-sources-2.4.24-r9.ebuild, + +files/ia64-sources-2.4.24.CAN-2004-0685.patch: + Version bump for CAN-2004-0685, bug #59769. *ia64-sources-2.4.24-r8 (04 Aug 2004) diff --git a/sys-kernel/ia64-sources/files/digest-ia64-sources-2.4.24-r8 b/sys-kernel/ia64-sources/files/digest-ia64-sources-2.4.24-r9 index 0c22f2fb2d27..0c22f2fb2d27 100644 --- a/sys-kernel/ia64-sources/files/digest-ia64-sources-2.4.24-r8 +++ b/sys-kernel/ia64-sources/files/digest-ia64-sources-2.4.24-r9 diff --git a/sys-kernel/ia64-sources/files/ia64-sources-2.4.24.CAN-2004-0685.patch b/sys-kernel/ia64-sources/files/ia64-sources-2.4.24.CAN-2004-0685.patch new file mode 100644 index 000000000000..d1be834cc8a5 --- /dev/null +++ b/sys-kernel/ia64-sources/files/ia64-sources-2.4.24.CAN-2004-0685.patch @@ -0,0 +1,83 @@ +# This is a BitKeeper generated diff -Nru style patch. +# +# ChangeSet +# 2004/07/26 19:14:16-03:00 mjc@redhat.com +# [PATCH] USB: more sparse fixes +# +# Back in October 2003 Arnaldo commited some fixes prior to 2.6 for some leaking info to userspace in the +# usb drivers: +# http://linux.bkbits.net:8080/linux-2.6/cset@3f986b35LyBKc-OxB8G6k22oOjgYTQ +# +# The corresponding changes have not been commited to 2.4, or included in +# the previous sparse fixes. +# +# drivers/usb/audio.c +# 2004/07/15 08:46:52-03:00 mjc@redhat.com +4 -0 +# USB: more sparse fixes +# +# drivers/usb/brlvger.c +# 2004/07/15 08:47:27-03:00 mjc@redhat.com +1 -0 +# USB: more sparse fixes +# +# drivers/usb/serial/io_edgeport.c +# 2004/07/15 08:48:06-03:00 mjc@redhat.com +1 -0 +# USB: more sparse fixes +# +# drivers/usb/vicam.c +# 2004/07/15 08:47:13-03:00 mjc@redhat.com +1 -0 +# USB: more sparse fixes +# +diff -Nru a/drivers/usb/audio.c b/drivers/usb/audio.c +--- a/drivers/usb/audio.c 2004-08-08 07:41:30 -07:00 ++++ b/drivers/usb/audio.c 2004-08-08 07:41:30 -07:00 +@@ -2141,6 +2141,8 @@ + + if (cmd == SOUND_MIXER_INFO) { + mixer_info info; ++ ++ memset(&info, 0, sizeof(info)); + strncpy(info.id, "USB_AUDIO", sizeof(info.id)); + strncpy(info.name, "USB Audio Class Driver", sizeof(info.name)); + info.modify_counter = ms->modcnt; +@@ -2150,6 +2152,8 @@ + } + if (cmd == SOUND_OLD_MIXER_INFO) { + _old_mixer_info info; ++ ++ memset(&info, 0, sizeof(info)); + strncpy(info.id, "USB_AUDIO", sizeof(info.id)); + strncpy(info.name, "USB Audio Class Driver", sizeof(info.name)); + if (copy_to_user((void *)arg, &info, sizeof(info))) +diff -Nru a/drivers/usb/brlvger.c b/drivers/usb/brlvger.c +--- a/drivers/usb/brlvger.c 2004-08-08 07:41:30 -07:00 ++++ b/drivers/usb/brlvger.c 2004-08-08 07:41:30 -07:00 +@@ -743,6 +743,7 @@ + case BRLVGER_GET_INFO: { + struct brlvger_info vi; + ++ memset(&vi, 0, sizeof(vi)); + strncpy(vi.driver_version, DRIVER_VERSION, + sizeof(vi.driver_version)); + vi.driver_version[sizeof(vi.driver_version)-1] = 0; +diff -Nru a/drivers/usb/serial/io_edgeport.c b/drivers/usb/serial/io_edgeport.c +--- a/drivers/usb/serial/io_edgeport.c 2004-08-08 07:41:30 -07:00 ++++ b/drivers/usb/serial/io_edgeport.c 2004-08-08 07:41:30 -07:00 +@@ -1913,6 +1913,7 @@ + + case TIOCGICOUNT: + cnow = edge_port->icount; ++ memset(&icount, 0, sizeof(icount)); + icount.cts = cnow.cts; + icount.dsr = cnow.dsr; + icount.rng = cnow.rng; +diff -Nru a/drivers/usb/vicam.c b/drivers/usb/vicam.c +--- a/drivers/usb/vicam.c 2004-08-08 07:41:30 -07:00 ++++ b/drivers/usb/vicam.c 2004-08-08 07:41:30 -07:00 +@@ -481,6 +481,7 @@ + struct video_capability b; + + DBG("VIDIOCGCAP\n"); ++ memset(&b, 0, sizeof(b)); + strcpy(b.name, "ViCam-based Camera"); + b.type = VID_TYPE_CAPTURE; + b.channels = 1; diff --git a/sys-kernel/ia64-sources/ia64-sources-2.4.24-r8.ebuild b/sys-kernel/ia64-sources/ia64-sources-2.4.24-r9.ebuild index a7d72a1305d0..dcb88621fb61 100644 --- a/sys-kernel/ia64-sources/ia64-sources-2.4.24-r8.ebuild +++ b/sys-kernel/ia64-sources/ia64-sources-2.4.24-r9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ia64-sources/ia64-sources-2.4.24-r8.ebuild,v 1.1 2004/08/04 22:31:58 plasmaroo Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ia64-sources/ia64-sources-2.4.24-r9.ebuild,v 1.1 2004/08/08 18:58:18 plasmaroo Exp $ IUSE="" @@ -68,6 +68,7 @@ src_unpack() { epatch ${FILESDIR}/${P}.CAN-2004-0497.patch || die "Failed to add the CAN-2004-0497 patch!" epatch ${FILESDIR}/${P}.CAN-2004-0535.patch || die "Failed to add the CAN-2004-0535 patch!" epatch ${FILESDIR}/${P}.CAN-2004-0565.patch || die "Failed to add the CAN-2004-0565 patch!" + epatch ${FILESDIR}/${P}.CAN-2004-0685.patch || die "Failed to add the CAN-2004-0685 patch!" kernel_universal_unpack } |