From 2d97e71f17e00ec2fe955e2649cbb86db2929464 Mon Sep 17 00:00:00 2001 From: lzeng14 Date: Fri, 3 Feb 2012 07:43:00 +0000 Subject: [PATCH] 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 --- MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { -- 2.39.2