2008-08-21 Felix Zielcke <fzielcke@z-51.de>

* fs/ntfs.c (grub_ntfs_mount): Fix a memory leak.
This commit is contained in:
fzielcke 2008-08-21 13:30:32 +00:00
parent c9baafe713
commit 380cfbb458
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2008-08-21 Felix Zielcke <fzielcke@z-51.de>
* fs/ntfs.c (grub_ntfs_mount): Fix a memory leak.
2008-08-21 Robert Millan <rmh@aybabtu.com>
* loader/i386/linux.c: New file. Implements generic 32-bit Linux

View file

@ -850,6 +850,7 @@ fail:
{
free_file (&data->mmft);
free_file (&data->cmft);
grub_free (data);
}
return 0;
}