* grub-core/normal/dyncmd.c (read_command_list): Don't access freed

space.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-06-13 01:04:14 +02:00
parent 7da036bbcb
commit 3006e9810f
2 changed files with 6 additions and 1 deletions

View File

@ -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>
Remove non-functional EFI grub_get_rtc. Put a better fatal message

View File

@ -122,8 +122,8 @@ read_command_list (const char *prefix)
last->next = ptr->next;
else
grub_command_list = ptr->next;
grub_free (ptr);
grub_free (ptr->data); /* extcmd struct */
grub_free (ptr);
}
else
last = ptr;