mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-23 21:54:27 +02:00
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:
parent
74fa83fda6
commit
2d97e71f17
@ -2,7 +2,7 @@
|
|||||||
This code produces the Smbios protocol. It also responsible for constructing
|
This code produces the Smbios protocol. It also responsible for constructing
|
||||||
SMBIOS table into system table.
|
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
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -127,7 +127,7 @@ GetSmbiosStructureSize (
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
UINTN FullSize;
|
UINTN FullSize;
|
||||||
UINT8 StrLen;
|
UINTN StrLen;
|
||||||
INT8* CharInStr;
|
INT8* CharInStr;
|
||||||
|
|
||||||
if (Size == NULL || NumberOfStrings == NULL) {
|
if (Size == NULL || NumberOfStrings == NULL) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user