mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
i2c: Verify that the count passed in to smbus_eeprom_init() is valid
Keep someone from passing in a bogus number Signed-off-by: Corey Minyard <cminyard@mvista.com>
This commit is contained in:
parent
1042b22dcb
commit
c203d4514b
1 changed files with 2 additions and 0 deletions
|
|
@ -180,6 +180,8 @@ void smbus_eeprom_init(I2CBus *smbus, int nb_eeprom,
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
/* XXX: make this persistent */
|
/* XXX: make this persistent */
|
||||||
|
|
||||||
|
assert(nb_eeprom <= 8);
|
||||||
uint8_t *eeprom_buf = g_malloc0(8 * SMBUS_EEPROM_SIZE);
|
uint8_t *eeprom_buf = g_malloc0(8 * SMBUS_EEPROM_SIZE);
|
||||||
if (eeprom_spd_size > 0) {
|
if (eeprom_spd_size > 0) {
|
||||||
memcpy(eeprom_buf, eeprom_spd, eeprom_spd_size);
|
memcpy(eeprom_buf, eeprom_spd, eeprom_spd_size);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue