From 11d1c7696692d7a6d98c2237dd03204c38baffd1 Mon Sep 17 00:00:00 2001 From: phcoder Date: Sat, 22 Aug 2009 17:47:16 +0000 Subject: [PATCH] 2009-08-22 Vladimir Serbinenko * commands/xnu_uuid.c (transform): Use grub_memcpy instead of memcpy. --- ChangeLog | 4 ++++ commands/xnu_uuid.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e245d2da8..b72d07e88 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-08-22 Vladimir Serbinenko + + * commands/xnu_uuid.c (transform): Use grub_memcpy instead of memcpy. + 2009-08-21 Pavel Roskin * Makefile.in (install-local): When checking if a file is in the diff --git a/commands/xnu_uuid.c b/commands/xnu_uuid.c index e8e12b072..d5c272d03 100644 --- a/commands/xnu_uuid.c +++ b/commands/xnu_uuid.c @@ -100,7 +100,7 @@ transform ( MD5_CONTEXT *ctx, const unsigned char *data ) correct_words[i] = grub_le_to_cpu32 (p[i]); } #else - memcpy (correct_words, data, 64); + grub_memcpy (correct_words, data, 64); #endif #define OP(a, b, c, d, s, T) \