* grub-core/normal/completion.c (grub_normal_do_completion): Fix

grub_free order.
This commit is contained in:
BVK Chaitanya 2010-09-04 14:19:04 +05:30
parent 37e7bf68c5
commit 25b60c913b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-09-04 BVK Chaitanya <bvk.groups@gmail.com>
* grub-core/normal/completion.c (grub_normal_do_completion): Fix
grub_free order.
2010-09-04 BVK Chaitanya <bvk.groups@gmail.com>
Support for passing block of commands as an argument to extcmds.

View File

@ -500,8 +500,8 @@ grub_normal_do_completion (char *buf, int *restore,
fail:
if (argc != 0)
{
grub_free (argv);
grub_free (argv[0]);
grub_free (argv);
}
grub_free (match);
grub_errno = GRUB_ERR_NONE;