ago 14/08/27 13:16:45 Added: CVE-2014-5388.patch Log: Fix CVE-2014-5388 wrt bug #520688 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Revision Changes Path 1.1 app-emulation/qemu/files/CVE-2014-5388.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/files/CVE-2014-5388.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/files/CVE-2014-5388.patch?rev=1.1&content-type=text/plain Index: CVE-2014-5388.patch =================================================================== https://lists.gnu.org/archive/html/qemu-devel/2014-08/msg03338.html --- hw/acpi/pcihp.c.orig 2014-08-27 12:53:38.200621592 +0000 +++ hw/acpi/pcihp.c 2014-08-27 12:53:58.390518561 +0000 @@ -231,7 +231,7 @@ uint32_t val = 0; int bsel = s->hotplug_select; - if (bsel < 0 || bsel > ACPI_PCIHP_MAX_HOTPLUG_BUS) { + if (bsel < 0 || bsel >= ACPI_PCIHP_MAX_HOTPLUG_BUS) { return 0; }
