]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-08-22 Vladimir Serbinenko <phcoder@gmail.com>
authorphcoder <phcoder@localhost>
Sat, 22 Aug 2009 17:47:16 +0000 (17:47 +0000)
committerphcoder <phcoder@localhost>
Sat, 22 Aug 2009 17:47:16 +0000 (17:47 +0000)
* commands/xnu_uuid.c (transform): Use grub_memcpy instead of memcpy.

ChangeLog
commands/xnu_uuid.c

index e245d2da8171a402eeda574978f27f955c434e5a..b72d07e881983e9864531fc9c6ce74909f45800e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-22  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * commands/xnu_uuid.c (transform): Use grub_memcpy instead of memcpy.
+
 2009-08-21  Pavel Roskin  <proski@gnu.org>
 
        * Makefile.in (install-local): When checking if a file is in the
index e8e12b07225d303b07311f95128a532e023b1098..d5c272d03d99b98fa2f9df1d091776041ca2c09a 100644 (file)
@@ -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) \