qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Out off array access in usb-net
@ 2010-11-09  7:36 Gleb Natapov
  2010-11-09  9:29 ` [Qemu-devel] " Paolo Bonzini
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Gleb Natapov @ 2010-11-09  7:36 UTC (permalink / raw)
  To: qemu-devel

Properly check array bounds before accessing array element.

Signed-off-by: Gleb Natapov <gleb@redhat.com>
diff --git a/hw/usb-net.c b/hw/usb-net.c
index 70f9263..84e2d79 100644
--- a/hw/usb-net.c
+++ b/hw/usb-net.c
@@ -1142,7 +1142,7 @@ static int usb_net_handle_control(USBDevice *dev, int request, int value,
                 break;
 
             default:
-                if (usb_net_stringtable[value & 0xff]) {
+                if (ARRAY_SIZE(usb_net_stringtable) > (value & 0xff)) {
                     ret = set_usb_string(data,
                                     usb_net_stringtable[value & 0xff]);
                     break;
--
			Gleb.

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2010-11-16 22:24 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-09  7:36 [Qemu-devel] [PATCH] Out off array access in usb-net Gleb Natapov
2010-11-09  9:29 ` [Qemu-devel] " Paolo Bonzini
2010-11-09  9:30 ` [Qemu-devel] " Markus Armbruster
2010-11-09  9:39   ` Gleb Natapov
2010-11-09 10:16     ` Markus Armbruster
2010-11-09 10:34       ` Gleb Natapov
2010-11-09 10:51         ` Markus Armbruster
2010-11-16 20:08           ` Anthony Liguori
2010-11-16 20:14             ` Gleb Natapov
2010-11-16 22:24 ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).