2004-12-13 Marco Gerards <metgerards@student.han.nl>

* fs/ext2.c (grub_ext2_open): Don't use data after freeing it.
	(grub_ext2_dir): Likewise.  Don't return in case of an error, jump
	to fail instead.  Reported by Vincent Pelletier
	<subdino2004@yahoo.fr>.

	* fs/fshelp.c (grub_fshelp_find_file): Don't free `oldnode' when
	it is not allocated.  Reported by Vincent Pelletier
	<subdino2004@yahoo.fr>.

	* normal/cmdline.c (grub_tab_complete): Add a blank line to the
	output so the output looks better.
This commit is contained in:
marco_g 2004-12-13 17:26:17 +00:00
parent 3f1578fe4a
commit 4ceb3636de
4 changed files with 18 additions and 6 deletions

View file

@ -205,7 +205,7 @@ grub_tab_complete (char *buf, int *restore)
/* Multiple matches found, print the first instead of completing. */
else if (numfound == 2)
{
grub_printf ("\nPossible %s are: ", what);
grub_printf ("\nPossible %s are:\n", what);
print_completion (found);
}