fs/cbfs: Add missing free.
Found by: Coverity scan.
This commit is contained in:
parent
dd430afbf8
commit
b6f21bcb98
1 changed files with 2 additions and 1 deletions
|
@ -144,7 +144,7 @@ static struct grub_archelp_data *
|
||||||
grub_cbfs_mount (grub_disk_t disk)
|
grub_cbfs_mount (grub_disk_t disk)
|
||||||
{
|
{
|
||||||
struct cbfs_file hd;
|
struct cbfs_file hd;
|
||||||
struct grub_archelp_data *data;
|
struct grub_archelp_data *data = NULL;
|
||||||
grub_uint32_t ptr;
|
grub_uint32_t ptr;
|
||||||
grub_off_t header_off;
|
grub_off_t header_off;
|
||||||
struct cbfs_header head;
|
struct cbfs_header head;
|
||||||
|
@ -196,6 +196,7 @@ grub_cbfs_mount (grub_disk_t disk)
|
||||||
return data;
|
return data;
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
|
grub_free (data);
|
||||||
grub_error (GRUB_ERR_BAD_FS, "not a cbfs filesystem");
|
grub_error (GRUB_ERR_BAD_FS, "not a cbfs filesystem");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue