* grub-core/normal/menu_entry.c (run): Quieten uninitialised

warning.  (This was in fact always initialised before use, but GCC
  wasn't smart enough to prove that.)
* grub-core/script/lexer.c (grub_script_lexer_yywrap): Likewise.
This commit is contained in:
Colin Watson 2011-04-01 11:43:51 +01:00
parent 91dc607330
commit 05d2ed3277
3 changed files with 9 additions and 2 deletions

View file

@ -126,7 +126,7 @@ int
grub_script_lexer_yywrap (struct grub_parser_param *parserstate,
const char *input)
{
int len;
int len = 0;
char *p = 0;
char *line = 0;
YY_BUFFER_STATE buffer;