* grub-core/lib/arg.c (grub_arg_show_help): Fix a NULL pointer

dereference.
	Reported by: qwertial.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-04-29 11:57:51 +02:00
parent 3c0003c3c3
commit e0aacf2433
2 changed files with 7 additions and 1 deletions

View file

@ -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>
* docs/grub.texi: Add a comment about usefullness of nativedisk.

View file

@ -158,7 +158,7 @@ grub_arg_show_help (grub_extcmd_t cmd)
show_usage (cmd);
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)
{
case 'h':