util/grub-install: rearrange code to avoid memory leak.
Found by: Coverity scan.
This commit is contained in:
parent
e61f4eba18
commit
be0743b052
1 changed files with 3 additions and 6 deletions
|
@ -615,17 +615,14 @@ device_map_check_duplicates (const char *dev_map)
|
|||
char **d;
|
||||
size_t i;
|
||||
|
||||
d = xmalloc (alloced * sizeof (d[0]));
|
||||
|
||||
if (dev_map[0] == '\0')
|
||||
return;
|
||||
|
||||
fp = grub_util_fopen (dev_map, "r");
|
||||
if (! fp)
|
||||
{
|
||||
free (d);
|
||||
return;
|
||||
}
|
||||
|
||||
d = xmalloc (alloced * sizeof (d[0]));
|
||||
|
||||
while (fgets (buf, sizeof (buf), fp))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue