2009-08-22 Vladimir Serbinenko <phcoder@gmail.com>

* commands/xnu_uuid.c (transform): Use grub_memcpy instead of memcpy.
This commit is contained in:
phcoder 2009-08-22 17:47:16 +00:00
parent 5496c37ebe
commit 11d1c76966
2 changed files with 5 additions and 1 deletions

View file

@ -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

View 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) \