diff options
author | Qiu Shumin <shumin.qiu@intel.com> | 2015-07-01 08:14:36 +0000 |
---|---|---|
committer | shenshushi <shenshushi@Edk2> | 2015-07-01 08:14:36 +0000 |
commit | 8f770819a1f60127055c1654b0796755d7f0a522 (patch) | |
tree | 5495134f53ee5ccd7f62d60d169321e2e484f789 | |
parent | 96f983fabce784e307a70c7361db2c02f03afab2 (diff) | |
download | edk2-8f770819a1f60127055c1654b0796755d7f0a522.zip edk2-8f770819a1f60127055c1654b0796755d7f0a522.tar.gz edk2-8f770819a1f60127055c1654b0796755d7f0a522.tar.bz2 |
MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode: 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: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17779 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c b/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c index 68c1a55..f1d9827 100644 --- a/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c +++ b/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c @@ -115,7 +115,7 @@ DebugPrint ( //
// Copy the Format string into the record
//
- AsciiStrCpy (FormatString, Format);
+ AsciiStrCpyS (FormatString, sizeof(Buffer) - (4 + sizeof(EFI_DEBUG_INFO) + 12 * sizeof(UINT64)), Format);
//
// The first 12 * sizeof (UINT64) bytes following EFI_DEBUG_INFO are for variable arguments
|