forked from Imagelibrary/binutils-gdb
Fix a use of an uninitialised variable in the bfd linker.
PR 27050 * lexsup.c (parse_args): Ensure that the longind local variable is set.
This commit is contained in:
@@ -718,7 +718,7 @@ parse_args (unsigned argc, char **argv)
|
||||
last_optind = -1;
|
||||
while (1)
|
||||
{
|
||||
int longind;
|
||||
int longind = 0;
|
||||
int optc;
|
||||
static unsigned int defsym_count;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user