length for the 64-bit entry is 32-bits, not 16-bits.

Reported by:	Jérôme Duval  (korli on github)
This commit is contained in:
John-Mark Gurney 2023-03-02 17:03:57 -08:00
parent 2fee875629
commit 13597be965
No known key found for this signature in database
GPG key ID: 205F0B33DD006ADA

View file

@ -486,7 +486,7 @@ smbios_probe(const caddr_t addr)
#ifdef HAS_SMBV3
if (isv3) {
smbios.length = SMBIOS_GET16(saddr, 0x0c); /* Structure Table Length */
smbios.length = SMBIOS_GET32(saddr, 0x0c); /* Structure Table Length */
paddr = SMBIOS_GET64(saddr, 0x10); /* Structure Table Address */
smbios.count = -1; /* not present in V3 */
smbios.ver = 0; /* not present in V3 */