2008-11-28 Krzysztof Smiechowicz <deadwood@wp.pl>
* fs/affs.c (grub_affs_iterate_dir): Return failure when directory
iteration failed.
* fs/sfs.c (grub_sfs_iterate_dir): Likewise.
This commit is contained in:
parent
15257703eb
commit
0c5e79ab5f
|
|
@ -1,3 +1,9 @@
|
||||||
|
2008-11-28 Krzysztof Smiechowicz <deadwood@wp.pl>
|
||||||
|
|
||||||
|
* fs/affs.c (grub_affs_iterate_dir): Return failure when directory
|
||||||
|
iteration failed.
|
||||||
|
* fs/sfs.c (grub_sfs_iterate_dir): Likewise.
|
||||||
|
|
||||||
2008-11-28 Robert Millan <rmh@aybabtu.com>
|
2008-11-28 Robert Millan <rmh@aybabtu.com>
|
||||||
|
|
||||||
Fix build on powerpc-ieee1275. Based on patch created by
|
Fix build on powerpc-ieee1275. Based on patch created by
|
||||||
|
|
|
||||||
|
|
@ -381,7 +381,7 @@ grub_affs_iterate_dir (grub_fshelp_node_t dir,
|
||||||
fail:
|
fail:
|
||||||
grub_free (node);
|
grub_free (node);
|
||||||
grub_free (hashtable);
|
grub_free (hashtable);
|
||||||
return 1;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue