* grub-core/io/gzio.c (grub_gzio_open): Always return original io if
file type was not recognized correctly (not gzip or corrupted).
This commit is contained in:
parent
f87abff538
commit
a5219af189
2 changed files with 7 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2011-08-20 Szymon Janc <szymon@janc.net.pl>
|
||||||
|
|
||||||
|
* grub-core/io/gzio.c (grub_gzio_open): Always return original io if
|
||||||
|
file type was not recognized correctly (not gzip or corrupted).
|
||||||
|
|
||||||
2011-08-19 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-08-19 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/kern/mips/loongson/init.c (grub_reboot): Reboot Fuloong.
|
* grub-core/kern/mips/loongson/init.c (grub_reboot): Reboot Fuloong.
|
||||||
|
|
|
@ -1179,12 +1179,9 @@ grub_gzio_open (grub_file_t io)
|
||||||
grub_free (gzio);
|
grub_free (gzio);
|
||||||
grub_free (file);
|
grub_free (file);
|
||||||
grub_file_seek (io, 0);
|
grub_file_seek (io, 0);
|
||||||
|
grub_errno = GRUB_ERR_NONE;
|
||||||
|
|
||||||
if (grub_errno == GRUB_ERR_BAD_FILE_TYPE)
|
return io;
|
||||||
{
|
|
||||||
grub_errno = GRUB_ERR_NONE;
|
|
||||||
return io;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return file;
|
return file;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue