summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Application/MemoryProfileInfo
diff options
context:
space:
mode:
authorQiu Shumin <shumin.qiu@intel.com>2015-07-08 01:08:09 +0000
committershenshushi <shenshushi@Edk2>2015-07-08 01:08:09 +0000
commit8feb7452acedf5bbe0f6c3accac8562b7cc29b3d (patch)
tree8f13834f1cfebcc75adf88b4cd592fa1e11975e1 /MdeModulePkg/Application/MemoryProfileInfo
parent5ddccf34c4f57e6e7fca767c1628a0d98ce8bdaf (diff)
downloadedk2-8feb7452acedf5bbe0f6c3accac8562b7cc29b3d.zip
edk2-8feb7452acedf5bbe0f6c3accac8562b7cc29b3d.tar.gz
edk2-8feb7452acedf5bbe0f6c3accac8562b7cc29b3d.tar.bz2
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
Diffstat (limited to 'MdeModulePkg/Application/MemoryProfileInfo')
-rw-r--r--MdeModulePkg/Application/MemoryProfileInfo/MemoryProfileInfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Application/MemoryProfileInfo/MemoryProfileInfo.c b/MdeModulePkg/Application/MemoryProfileInfo/MemoryProfileInfo.c
index b425af1..f69a3e7 100644
--- a/MdeModulePkg/Application/MemoryProfileInfo/MemoryProfileInfo.c
+++ b/MdeModulePkg/Application/MemoryProfileInfo/MemoryProfileInfo.c
@@ -201,7 +201,7 @@ GetDriverNameString (
//
// 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;
FreePool (NameString);
return;