* 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

@ -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;