ShellPkg: Use safe string functions to refine code.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin <shumin.qiu@intel.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17730 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -3229,13 +3229,13 @@ QueryTable (
|
||||
//
|
||||
if ((High > Low && Key >= Low && Key <= High)
|
||||
|| (Table[Index].Key == Key)) {
|
||||
StrnCpy (Info, Table[Index].Info, InfoLen-1);
|
||||
StrnCat (Info, L"\n", InfoLen - 1 - StrLen(Info));
|
||||
StrCpyS (Info, InfoLen, Table[Index].Info);
|
||||
StrCatS (Info, InfoLen, L"\n");
|
||||
return Key;
|
||||
}
|
||||
}
|
||||
|
||||
StrnCpy (Info, L"Undefined Value\n", InfoLen - 1);
|
||||
StrCpyS (Info, InfoLen, L"Undefined Value\n");
|
||||
return QUERY_TABLE_UNFOUND;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user