* util/grub-fstest.c (cmd_crc): Use grub_get_unaligned32 for safety.
This commit is contained in:
parent
5b25873518
commit
8dcbe03b82
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub-fstest.c (cmd_crc): Use grub_get_unaligned32 for safety.
|
||||||
|
|
||||||
2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
|
2012-06-06 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/disk/pata.c (grub_pata_pio_read)
|
* grub-core/disk/pata.c (grub_pata_pio_read)
|
||||||
|
|
|
@ -349,7 +349,7 @@ cmd_crc (char *pathname)
|
||||||
read_file (pathname, crc_hook);
|
read_file (pathname, crc_hook);
|
||||||
GRUB_MD_CRC32->final(crc32_context);
|
GRUB_MD_CRC32->final(crc32_context);
|
||||||
printf ("%08x\n",
|
printf ("%08x\n",
|
||||||
grub_be_to_cpu32(*(grub_uint32_t*)GRUB_MD_CRC32->read(crc32_context)));
|
grub_be_to_cpu32 (grub_get_unaligned32 (GRUB_MD_CRC32->read (crc32_context))));
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char *root = NULL;
|
static const char *root = NULL;
|
||||||
|
|
Loading…
Add table
Reference in a new issue