* grub-core/lib/arg.c (grub_arg_show_help): Fix a NULL pointer
dereference. Reported by: qwertial.
This commit is contained in:
parent
3c0003c3c3
commit
e0aacf2433
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2013-04-29 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/lib/arg.c (grub_arg_show_help): Fix a NULL pointer
|
||||||
|
dereference.
|
||||||
|
Reported by: qwertial.
|
||||||
|
|
||||||
2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* docs/grub.texi: Add a comment about usefullness of nativedisk.
|
* docs/grub.texi: Add a comment about usefullness of nativedisk.
|
||||||
|
|
|
@ -158,7 +158,7 @@ grub_arg_show_help (grub_extcmd_t cmd)
|
||||||
show_usage (cmd);
|
show_usage (cmd);
|
||||||
grub_printf ("%s\n\n", _(cmd->cmd->description));
|
grub_printf ("%s\n\n", _(cmd->cmd->description));
|
||||||
|
|
||||||
for (opt = cmd->options; opt->doc; opt++)
|
for (opt = cmd->options; opt && opt->doc; opt++)
|
||||||
switch (opt->shortarg)
|
switch (opt->shortarg)
|
||||||
{
|
{
|
||||||
case 'h':
|
case 'h':
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue