* grub-core/fs/fshelp.c (grub_fshelp_find_file): Don't free oldnode if
it's equal to currnode. This can happen with "" symlink.
This commit is contained in:
parent
5e6a440ad7
commit
c59bdff709
2 changed files with 7 additions and 1 deletions
|
@ -189,7 +189,8 @@ grub_fshelp_find_file (const char *path, grub_fshelp_node_t rootnode,
|
|||
}
|
||||
}
|
||||
|
||||
free_node (oldnode);
|
||||
if (oldnode != currnode)
|
||||
free_node (oldnode);
|
||||
|
||||
/* Found the node! */
|
||||
if (! next || *next == '\0')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue