2004-07-12 Marco Gerards <metgerards@student.han.nl>
* normal/arg.c (grub_arg_parse): Correct error handling after reallocating the argumentlist (check if `argl' is not null instead of checking if `args' is not null). * kern/mm.c (grub_realloc): Return the same pointer when using the same region, instead of returning the header address.
This commit is contained in:
parent
e15199cb7b
commit
5a9e354626
3 changed files with 10 additions and 2 deletions
|
@ -189,7 +189,7 @@ grub_arg_parse (grub_command_t cmd, int argc, char **argv,
|
|||
grub_err_t add_arg (char *s)
|
||||
{
|
||||
argl = grub_realloc (argl, (++num) * sizeof (char *));
|
||||
if (! args)
|
||||
if (! argl)
|
||||
return grub_errno;
|
||||
argl[num - 1] = s;
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue