+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 ,
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)