mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 07:02:34 +02:00
ich_descriptors_tool: Fix an off-by-one
Change-Id: I008abd78c7c42bf3f17e68c192cd79dd427c5cb5 Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/19045 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
0ea99f57c9
commit
a52731d784
@ -230,7 +230,7 @@ int main(int argc, char *argv[])
|
||||
prettyprint_ich_descriptors(cs, &desc);
|
||||
|
||||
pMAC = (uint8_t *) &buf[ICH_FREG_BASE(desc.region.reg3_base) >> 2];
|
||||
if (len >= ICH_FREG_BASE(desc.region.reg3_base) + 5 && pMAC[0] != 0xff)
|
||||
if (len >= ICH_FREG_BASE(desc.region.reg3_base) + 6 && pMAC[0] != 0xff)
|
||||
printf("The MAC address might be at offset 0x%x: "
|
||||
"%02x:%02x:%02x:%02x:%02x:%02x\n",
|
||||
ICH_FREG_BASE(desc.region.reg3_base),
|
||||
|
Loading…
x
Reference in New Issue
Block a user