mirror of https://github.com/acidanthera/audk.git
MdeModulePkg: Refine code to use Strn**S safe functions instead of Str**S ones in some cases.
Safe string functions may ASSERT when the source length is larger than the MaxDest. This patch use Strn**S to indicate the copy length. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin <shumin.qiu@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17867 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
5ddccf34c4
commit
8feb7452ac
|
@ -201,7 +201,7 @@ GetDriverNameString (
|
||||||
//
|
//
|
||||||
// Method 2: Get the name string from FFS UI section
|
// Method 2: Get the name string from FFS UI section
|
||||||
//
|
//
|
||||||
StrCpyS (mNameString, PROFILE_NAME_STRING_LENGTH + 1, NameString);
|
StrnCpyS (mNameString, PROFILE_NAME_STRING_LENGTH + 1, NameString, PROFILE_NAME_STRING_LENGTH);
|
||||||
mNameString[PROFILE_NAME_STRING_LENGTH] = 0;
|
mNameString[PROFILE_NAME_STRING_LENGTH] = 0;
|
||||||
FreePool (NameString);
|
FreePool (NameString);
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -190,10 +190,10 @@ StartPerformanceMeasurementEx (
|
||||||
LogEntryArray[Index].Handle = (EFI_PHYSICAL_ADDRESS) (UINTN) Handle;
|
LogEntryArray[Index].Handle = (EFI_PHYSICAL_ADDRESS) (UINTN) Handle;
|
||||||
|
|
||||||
if (Token != NULL) {
|
if (Token != NULL) {
|
||||||
AsciiStrCpyS (LogEntryArray[Index].Token, PEI_PERFORMANCE_STRING_SIZE, Token);
|
AsciiStrnCpyS (LogEntryArray[Index].Token, PEI_PERFORMANCE_STRING_SIZE, Token, PEI_PERFORMANCE_STRING_LENGTH);
|
||||||
}
|
}
|
||||||
if (Module != NULL) {
|
if (Module != NULL) {
|
||||||
AsciiStrCpyS (LogEntryArray[Index].Module, PEI_PERFORMANCE_STRING_SIZE, Module);
|
AsciiStrnCpyS (LogEntryArray[Index].Module, PEI_PERFORMANCE_STRING_SIZE, Module, PEI_PERFORMANCE_STRING_LENGTH);
|
||||||
}
|
}
|
||||||
|
|
||||||
LogEntryArray[Index].EndTimeStamp = 0;
|
LogEntryArray[Index].EndTimeStamp = 0;
|
||||||
|
|
|
@ -203,10 +203,10 @@ StartGaugeEx (
|
||||||
GaugeEntryExArray[Index].Handle = (EFI_PHYSICAL_ADDRESS) (UINTN) Handle;
|
GaugeEntryExArray[Index].Handle = (EFI_PHYSICAL_ADDRESS) (UINTN) Handle;
|
||||||
|
|
||||||
if (Token != NULL) {
|
if (Token != NULL) {
|
||||||
AsciiStrCpyS (GaugeEntryExArray[Index].Token, SMM_PERFORMANCE_STRING_SIZE, Token);
|
AsciiStrnCpyS (GaugeEntryExArray[Index].Token, SMM_PERFORMANCE_STRING_SIZE, Token, SMM_PERFORMANCE_STRING_LENGTH);
|
||||||
}
|
}
|
||||||
if (Module != NULL) {
|
if (Module != NULL) {
|
||||||
AsciiStrCpyS (GaugeEntryExArray[Index].Module, SMM_PERFORMANCE_STRING_SIZE, Module);
|
AsciiStrnCpyS (GaugeEntryExArray[Index].Module, SMM_PERFORMANCE_STRING_SIZE, Module, SMM_PERFORMANCE_STRING_LENGTH);
|
||||||
}
|
}
|
||||||
|
|
||||||
GaugeEntryExArray[Index].EndTimeStamp = 0;
|
GaugeEntryExArray[Index].EndTimeStamp = 0;
|
||||||
|
|
Loading…
Reference in New Issue