mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-09 12:07:20 +00:00
Add missing parenthesis for conditional statement stanza.
This commit is contained in:
parent
49892fdf50
commit
04582bb3bb
@ -1,3 +1,8 @@
|
||||
2007-04-18 Jerone Young <jerone@gmail.com>
|
||||
|
||||
* kernel/elf.c: Add missing parenthesis for conditional statement
|
||||
stanza.
|
||||
|
||||
2007-04-10 Jerone Young <jerone@gmail.com>
|
||||
|
||||
* util/i386/pc/getroot.c: Update so that if root device is /dev/root ,
|
||||
|
14
kern/elf.c
14
kern/elf.c
@ -432,12 +432,14 @@ grub_elf64_load (grub_elf_t _elf, grub_elf64_load_hook_t _load_hook,
|
||||
grub_ssize_t read;
|
||||
read = grub_file_read (elf->file, (void *) load_addr, phdr->p_filesz);
|
||||
if (read != (grub_ssize_t) phdr->p_filesz)
|
||||
/* XXX How can we free memory from `load_hook'? */
|
||||
grub_error_push ();
|
||||
return grub_error (GRUB_ERR_BAD_OS,
|
||||
"Couldn't read segment from file: "
|
||||
"wanted 0x%lx bytes; read 0x%lx bytes.",
|
||||
phdr->p_filesz, read);
|
||||
{
|
||||
/* XXX How can we free memory from `load_hook'? */
|
||||
grub_error_push ();
|
||||
return grub_error (GRUB_ERR_BAD_OS,
|
||||
"Couldn't read segment from file: "
|
||||
"wanted 0x%lx bytes; read 0x%lx bytes.",
|
||||
phdr->p_filesz, read);
|
||||
}
|
||||
}
|
||||
|
||||
if (phdr->p_filesz < phdr->p_memsz)
|
||||
|
Loading…
Reference in New Issue
Block a user