mirror of https://github.com/acidanthera/audk.git
RedfishPkg: RedfishPlatformConfigDxe: reduce memory allocations
It's unclear why the new string is allocated as copy of the original string if its pointer is stored in an array and the original string is released immediately after the copy is created. All data allocated in the same pool. Cc: Nickle Wang <nicklew@nvidia.com> Cc: Igor Kulchytskyy <igork@ami.com> Signed-off-by: Mike Maslenkin <mike.maslenkin@gmail.com> Reviewed-by: Abner Chang <abner.chang@amd.com>
This commit is contained in:
parent
0f66c2e687
commit
d81813368a
|
@ -2057,9 +2057,7 @@ RedfishPlatformConfigProtocolGetConfigureLang (
|
|||
TmpString = HiiGetRedfishString (StatementRef->Statement->ParentForm->ParentFormset->HiiHandle, FullSchema, StatementRef->Statement->Description);
|
||||
ASSERT (TmpString != NULL);
|
||||
if (TmpString != NULL) {
|
||||
TmpConfigureLangList[Index] = AllocateCopyPool (StrSize (TmpString), TmpString);
|
||||
ASSERT (TmpConfigureLangList[Index] != NULL);
|
||||
FreePool (TmpString);
|
||||
TmpConfigureLangList[Index] = TmpString;
|
||||
++Index;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue