diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-08 01:24:16 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-08 01:24:16 +0000 |
commit | cc4e0485045285042ad088736ef278459b139d54 (patch) | |
tree | 245ab29fda9f1d7349fc5a09b4929ec1a8a57c6b /MdePkg/Library/BaseMemoryLibOptPei/SetMemWrapper.c | |
parent | 0002305b5ffa712e924fbe6db24872fd2623dc3e (diff) | |
download | edk2-platforms-cc4e0485045285042ad088736ef278459b139d54.tar.xz |
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/BaseMemoryLibOptPei/SetMemWrapper.c')
-rw-r--r-- | MdePkg/Library/BaseMemoryLibOptPei/SetMemWrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseMemoryLibOptPei/SetMemWrapper.c b/MdePkg/Library/BaseMemoryLibOptPei/SetMemWrapper.c index 0e3428cd7a..63e7f22085 100644 --- a/MdePkg/Library/BaseMemoryLibOptPei/SetMemWrapper.c +++ b/MdePkg/Library/BaseMemoryLibOptPei/SetMemWrapper.c @@ -32,7 +32,7 @@ Fills a target buffer with a byte value, and returns the target buffer.
This function fills Length bytes of Buffer with Value, and returns Buffer.
- If Length is greater than (MAX_ADDRESS ? Buffer + 1), then ASSERT().
+ If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Memory to set.
@param Length Number of bytes to set.
|