2008-02-11 Robert Millan <rmh@aybabtu.com>
* util/biosdisk.c (grub_util_biosdisk_open, linux_find_partition) (grub_util_biosdisk_get_grub_dev): Check open() exit status by comparing it with -1, not 0.
This commit is contained in:
parent
bf7486424d
commit
d0db4b0454
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2008-02-11 Robert Millan <rmh@aybabtu.com>
|
||||||
|
|
||||||
|
* util/biosdisk.c (grub_util_biosdisk_open, linux_find_partition)
|
||||||
|
(grub_util_biosdisk_get_grub_dev): Check open() exit status by
|
||||||
|
comparing it with -1, not 0.
|
||||||
|
|
||||||
2008-02-10 Robert Millan <rmh@aybabtu.com>
|
2008-02-10 Robert Millan <rmh@aybabtu.com>
|
||||||
|
|
||||||
* conf/i386-efi.rmk (grub_emu_SOURCES): Add `disk/raid.c' and
|
* conf/i386-efi.rmk (grub_emu_SOURCES): Add `disk/raid.c' and
|
||||||
|
|
|
@ -167,7 +167,7 @@ grub_util_biosdisk_open (const char *name, grub_disk_t disk)
|
||||||
int fd;
|
int fd;
|
||||||
|
|
||||||
fd = open (map[drive], O_RDONLY);
|
fd = open (map[drive], O_RDONLY);
|
||||||
if (! fd)
|
if (fd == -1)
|
||||||
return grub_error (GRUB_ERR_BAD_DEVICE, "cannot open `%s'", map[drive]);
|
return grub_error (GRUB_ERR_BAD_DEVICE, "cannot open `%s'", map[drive]);
|
||||||
|
|
||||||
if (fstat (fd, &st) < 0 || ! S_ISBLK (st.st_mode))
|
if (fstat (fd, &st) < 0 || ! S_ISBLK (st.st_mode))
|
||||||
|
@ -254,7 +254,7 @@ linux_find_partition (char *dev, unsigned long sector)
|
||||||
|
|
||||||
sprintf (p, format, i);
|
sprintf (p, format, i);
|
||||||
fd = open (real_dev, O_RDONLY);
|
fd = open (real_dev, O_RDONLY);
|
||||||
if (! fd)
|
if (fd == -1)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (ioctl (fd, HDIO_GETGEO, &hdg))
|
if (ioctl (fd, HDIO_GETGEO, &hdg))
|
||||||
|
@ -773,7 +773,7 @@ grub_util_biosdisk_get_grub_dev (const char *os_dev)
|
||||||
return name;
|
return name;
|
||||||
|
|
||||||
fd = open (os_dev, O_RDONLY);
|
fd = open (os_dev, O_RDONLY);
|
||||||
if (! fd)
|
if (fd == -1)
|
||||||
{
|
{
|
||||||
grub_error (GRUB_ERR_BAD_DEVICE, "cannot open `%s'", os_dev);
|
grub_error (GRUB_ERR_BAD_DEVICE, "cannot open `%s'", os_dev);
|
||||||
free (name);
|
free (name);
|
||||||
|
|
Loading…
Reference in a new issue