From: Peter Maydell Date: Wed, 9 Nov 2011 18:59:54 +0000 (+0000) Subject: hw/lan9118.c: Add missing 'break' to fix buffer overrun X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0e3b800e71cb7759d099eabbd8ad4c4fe848e381;p=qmiga%2Fqemu.git hw/lan9118.c: Add missing 'break' to fix buffer overrun Add a missing 'break' statement to fix a buffer overrun when executing the EEPROM write-all command. Spotted by Coverity (see bug 887883). Signed-off-by: Peter Maydell Signed-off-by: Stefan Hajnoczi --- diff --git a/hw/lan9118.c b/hw/lan9118.c index 634b88ee14..f8149e6983 100644 --- a/hw/lan9118.c +++ b/hw/lan9118.c @@ -863,6 +863,7 @@ static void lan9118_eeprom_cmd(lan9118_state *s, int cmd, int addr) } else { DPRINTF("EEPROM Write All (ignored)\n"); } + break; case 5: /* ERASE */ if (s->eeprom_writable) { s->eeprom[addr] = 0xff;