From: lzeng14 Date: Fri, 3 Feb 2012 07:43:00 +0000 (+0000) Subject: Change StrLen from UINT8 to UINTN to fix the potential infinite loop issue. X-Git-Tag: edk2-stable201903~13662 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=2d97e71f17e00ec2fe955e2649cbb86db2929464 Change StrLen from UINT8 to UINTN to fix the potential infinite loop issue. Signed-off-by: lzeng14 Reviewed-by: li-elvin git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12982 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c b/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c index 053e7a4984..2d0be7cd51 100644 --- a/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c +++ b/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c @@ -2,7 +2,7 @@ This code produces the Smbios protocol. It also responsible for constructing SMBIOS table into system table. -Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.
+Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -127,7 +127,7 @@ GetSmbiosStructureSize ( ) { UINTN FullSize; - UINT8 StrLen; + UINTN StrLen; INT8* CharInStr; if (Size == NULL || NumberOfStrings == NULL) {