svn commit: r210891 - stable/7/sys/dev/ipmi
John Baldwin
jhb at FreeBSD.org
Thu Aug 5 19:43:32 UTC 2010
Author: jhb
Date: Thu Aug 5 19:43:32 2010
New Revision: 210891
URL: http://svn.freebsd.org/changeset/base/210891
Log:
MFC 210604:
Fix test for double-nul characters that terminate the string table at
the end of each SMBIOS/DMI structure.
Modified:
stable/7/sys/dev/ipmi/ipmi_smbios.c
Directory Properties:
stable/7/sys/ (props changed)
stable/7/sys/cddl/contrib/opensolaris/ (props changed)
stable/7/sys/contrib/dev/acpica/ (props changed)
stable/7/sys/contrib/pf/ (props changed)
Modified: stable/7/sys/dev/ipmi/ipmi_smbios.c
==============================================================================
--- stable/7/sys/dev/ipmi/ipmi_smbios.c Thu Aug 5 19:43:19 2010 (r210890)
+++ stable/7/sys/dev/ipmi/ipmi_smbios.c Thu Aug 5 19:43:32 2010 (r210891)
@@ -189,7 +189,7 @@ smbios_walk_table(uint8_t *p, int entrie
* formatted area of this structure.
*/
p += s->length;
- while (p[0] != 0 && p[1] != 0)
+ while (!(p[0] == 0 && p[1] == 0))
p++;
/*
More information about the svn-src-stable-7
mailing list