diff options
author | Dandan Bi <dandan.bi@intel.com> | 2015-08-13 00:15:06 +0000 |
---|---|---|
committer | dandanbi <dandanbi@Edk2> | 2015-08-13 00:15:06 +0000 |
commit | d91cb87049db11a193bacec72506a24df19e46e9 (patch) | |
tree | d9cfb294e8788cb0e2a8763a73bb82a08e3af7a4 /MdeModulePkg/Application/UiApp/DeviceMngr/DeviceManager.c | |
parent | 0cd1ecea673160417e30e46009a54d361a131235 (diff) | |
download | edk2-platforms-d91cb87049db11a193bacec72506a24df19e46e9.tar.xz |
MdeModulePkg:Use safe string functions in UiApp.
Replace the unsafe string functions with the safe one in UiApp.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
Reviewed-by: Qiu Shumin <shumin.qiu@intel.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18214 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Application/UiApp/DeviceMngr/DeviceManager.c')
-rw-r--r-- | MdeModulePkg/Application/UiApp/DeviceMngr/DeviceManager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Application/UiApp/DeviceMngr/DeviceManager.c b/MdeModulePkg/Application/UiApp/DeviceMngr/DeviceManager.c index 0256500798..3fcc4c9521 100644 --- a/MdeModulePkg/Application/UiApp/DeviceMngr/DeviceManager.c +++ b/MdeModulePkg/Application/UiApp/DeviceMngr/DeviceManager.c @@ -172,7 +172,7 @@ GetMacAddressString( }
*PBuffer = String;
- StrCpy(String, L"MAC:");
+ StrCpyS(String, BufferLen / sizeof (CHAR16), L"MAC:");
String += 4;
//
|