mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-23 14:00:34 +00:00
grub-probe: fix memory leak
Found by: Coverity scan. CID: 73783
This commit is contained in:
parent
fa2af21ec8
commit
d5cc487d39
@ -668,6 +668,13 @@ probe (const char *path, char **device_names, char delim)
|
||||
for (curdrive = drives_names; *curdrive; curdrive++)
|
||||
free (*curdrive);
|
||||
free (drives_names);
|
||||
|
||||
if (path != NULL)
|
||||
{
|
||||
for (curdev = device_names; *curdev; curdev++)
|
||||
free (*curdev);
|
||||
free (device_names);
|
||||
}
|
||||
}
|
||||
|
||||
static struct argp_option options[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user