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
This commit is contained in:
lzeng14 2012-02-03 07:43:00 +00:00
parent 74fa83fda6
commit 2d97e71f17
1 changed files with 2 additions and 2 deletions

View File

@ -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.<BR>
Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.<BR>
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) {