efi_loader: fix freestanding memmove()
For EFI binaries we have to provide an implementation of memmove() in efi_freestanding.c. Before this patch the memmove() function was copying in the wrong direction. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
7aeceffb25
commit
72291a9d83
@ -47,7 +47,7 @@ void *memmove(void *dest, const void *src, size_t n)
|
||||
u8 *d = dest;
|
||||
const u8 *s = src;
|
||||
|
||||
if (d >= s) {
|
||||
if (d <= s) {
|
||||
for (; n; --n)
|
||||
*d++ = *s++;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user