summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/UefiDebugLibConOut
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2008-09-08 01:24:16 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2008-09-08 01:24:16 +0000
commitcc4e0485045285042ad088736ef278459b139d54 (patch)
tree245ab29fda9f1d7349fc5a09b4929ec1a8a57c6b /MdePkg/Library/UefiDebugLibConOut
parent0002305b5ffa712e924fbe6db24872fd2623dc3e (diff)
downloadedk2-cc4e0485045285042ad088736ef278459b139d54.tar.gz
edk2-cc4e0485045285042ad088736ef278459b139d54.tar.bz2
edk2-cc4e0485045285042ad088736ef278459b139d54.zip
Correct the wrong '?' character to '-', and add check DestinationBuffer == SourceBuffer for CompareMem functions in all BaseMemory library instances.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5831 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/UefiDebugLibConOut')
-rw-r--r--MdePkg/Library/UefiDebugLibConOut/DebugLib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/UefiDebugLibConOut/DebugLib.c b/MdePkg/Library/UefiDebugLibConOut/DebugLib.c
index 393c698690..63a72e8ab1 100644
--- a/MdePkg/Library/UefiDebugLibConOut/DebugLib.c
+++ b/MdePkg/Library/UefiDebugLibConOut/DebugLib.c
@@ -154,7 +154,7 @@ DebugAssert (
If Buffer is NULL, then ASSERT().
- If Length is greater than (MAX_ADDRESS ? Buffer + 1), then ASSERT().
+ If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to be filled with PcdDebugClearMemoryValue.
@param Length Number of bytes in Buffer to fill with zeros PcdDebugClearMemoryValue.