From bc97d245670ae2b3ebba0f1f6176ce3bf92f4f0b Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Sun, 18 Dec 2005 17:15:39 +0000 Subject: [PATCH] Fix the returned pointer in CopyUp. svn path=/trunk/; revision=20247 --- reactos/lib/string/i386/memmove_asm.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/string/i386/memmove_asm.s b/reactos/lib/string/i386/memmove_asm.s index b86a1ec7ac5..6b33fed451b 100644 --- a/reactos/lib/string/i386/memmove_asm.s +++ b/reactos/lib/string/i386/memmove_asm.s @@ -54,7 +54,7 @@ _memmove: je .L3 rep movsb .L3: - mov 16(%ebp),%eax + mov 8(%ebp),%eax pop %edi pop %esi leave