2008-06-13 Bean <bean123ch@gmail.com>
* commands/hexdump.c (grub_cmd_hexdump): Adjust offset for partition. * fs/ext2.c (grub_ext3_get_journal): Fix revoke block handling. * fs/fshelp.c (grub_fshelp_map_block): Don't map block 0 as it's used to indicate sparse block.
This commit is contained in:
parent
e6d1a308ed
commit
dfe9ddd4cb
4 changed files with 25 additions and 10 deletions
|
@ -356,7 +356,7 @@ grub_fshelp_map_block (grub_fshelp_journal_t log, grub_disk_addr_t block)
|
|||
{
|
||||
int map_block;
|
||||
|
||||
if (! log)
|
||||
if ((! log) || (! block))
|
||||
return block;
|
||||
|
||||
for (map_block = log->num_mappings - 1; map_block >= 0; map_block--)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue