* grub-core/normal/dyncmd.c (read_command_list): Don't access freed
space.
This commit is contained in:
parent
7da036bbcb
commit
3006e9810f
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2012-06-13 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/normal/dyncmd.c (read_command_list): Don't access freed
|
||||||
|
space.
|
||||||
|
|
||||||
2012-06-11 Vladimir Serbinenko <phcoder@gmail.com>
|
2012-06-11 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Remove non-functional EFI grub_get_rtc. Put a better fatal message
|
Remove non-functional EFI grub_get_rtc. Put a better fatal message
|
||||||
|
|
|
@ -122,8 +122,8 @@ read_command_list (const char *prefix)
|
||||||
last->next = ptr->next;
|
last->next = ptr->next;
|
||||||
else
|
else
|
||||||
grub_command_list = ptr->next;
|
grub_command_list = ptr->next;
|
||||||
grub_free (ptr);
|
|
||||||
grub_free (ptr->data); /* extcmd struct */
|
grub_free (ptr->data); /* extcmd struct */
|
||||||
|
grub_free (ptr);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
last = ptr;
|
last = ptr;
|
||||||
|
|
Loading…
Reference in a new issue