diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-06 09:42:56 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-08-06 09:42:56 +0000 |
commit | 6bfce83ac45f2cb829178c619ee6907d640cc847 (patch) | |
tree | d5bae3428026069a2dbc3209b5bb8d741d383bb4 /Nt32Pkg/PlatformBdsDxe/Generic | |
parent | fe8e4eb01ccf0d4e68429bbca19fe78a3fc4002d (diff) | |
download | edk2-platforms-6bfce83ac45f2cb829178c619ee6907d640cc847.tar.xz |
Correct a bug that allocate a fix size buffer as input buffer for Hii->GetString. We will allocate it before we use it and free it after use.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3555 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg/PlatformBdsDxe/Generic')
-rw-r--r-- | Nt32Pkg/PlatformBdsDxe/Generic/FrontPage.c | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/Nt32Pkg/PlatformBdsDxe/Generic/FrontPage.c b/Nt32Pkg/PlatformBdsDxe/Generic/FrontPage.c index 93b27c5ed4..6df4d86426 100644 --- a/Nt32Pkg/PlatformBdsDxe/Generic/FrontPage.c +++ b/Nt32Pkg/PlatformBdsDxe/Generic/FrontPage.c @@ -332,17 +332,6 @@ ReInitStrings: OptionCount = 0;
- //
- // Try for a 512 byte Buffer
- //
- BufferSize = 0x200;
-
- //
- // Allocate memory for our Form binary
- //
- StringBuffer = AllocateZeroPool (BufferSize);
- ASSERT (StringBuffer != NULL);
-
for (Index = 0; LanguageString[Index] != 0; Index += 3) {
Token = 0;
CopyMem (Lang, &LanguageString[Index], 6);
@@ -352,8 +341,14 @@ ReInitStrings: mLastSelection = (UINT16) OptionCount;
}
+ BufferSize = 0;
+ Status = gHii->GetString (gHii, gStringPackHandle, 1, TRUE, Lang, &BufferSize, NULL);
+ ASSERT(Status == EFI_BUFFER_TOO_SMALL);
+ StringBuffer = AllocateZeroPool (BufferSize);
+ ASSERT (StringBuffer != NULL);
Status = gHii->GetString (gHii, gStringPackHandle, 1, TRUE, Lang, &BufferSize, StringBuffer);
gHii->NewString (gHii, NULL, gStringPackHandle, &Token, StringBuffer);
+ FreePool (StringBuffer);
CopyMem (&OptionList[OptionCount].StringToken, &Token, sizeof (UINT16));
CopyMem (&OptionList[OptionCount].Value, &OptionCount, sizeof (UINT16));
Key = 0x1234;
@@ -365,7 +360,6 @@ ReInitStrings: FreePool (LanguageString);
if (ReInitializeStrings) {
- FreePool (StringBuffer);
FreePool (OptionList);
return EFI_SUCCESS;
}
@@ -391,7 +385,6 @@ ReInitStrings: //
// FreePool (OptionList);
//
- FreePool (StringBuffer);
return Status;
}
|