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:
Mike Maslenkin 2023-08-30 00:33:07 +03:00 committed by mergify[bot]
parent 0f66c2e687
commit d81813368a
1 changed files with 1 additions and 3 deletions

View File

@ -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;
}
}