Author: weiden
Date: Wed Sep 27 16:28:25 2006
New Revision: 24282
URL:
http://svn.reactos.org/svn/reactos?rev=24282&view=rev
Log:
Move the memory in RtlpDeleteData instead of copying it because the source and destination
may be overlapping.
Modified:
trunk/reactos/lib/rtl/acl.c
Modified: trunk/reactos/lib/rtl/acl.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/rtl/acl.c?rev=24282&am…
==============================================================================
--- trunk/reactos/lib/rtl/acl.c (original)
+++ trunk/reactos/lib/rtl/acl.c Wed Sep 27 16:28:25 2006
@@ -612,7 +612,7 @@
{
if (AceSize < Offset)
{
- RtlCopyMemory(Ace,
+ RtlMoveMemory(Ace,
(PVOID)((ULONG_PTR)Ace + AceSize),
Offset - AceSize);
}