From: phcoder Date: Sat, 22 Aug 2009 17:47:16 +0000 (+0000) Subject: 2009-08-22 Vladimir Serbinenko X-Git-Tag: 1.98~613 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=11d1c7696692d7a6d98c2237dd03204c38baffd1;p=thirdparty%2Fgrub.git 2009-08-22 Vladimir Serbinenko * commands/xnu_uuid.c (transform): Use grub_memcpy instead of memcpy. --- 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) \