QUIET flag initialization missing in 2 places.

Fix by Matthew Malcomson  <matthew.malcomson@arm.com>

Pushed as obvious.
This commit is contained in:
Philippe Waroquiers 2018-11-02 14:20:59 +01:00
parent 396ce99883
commit d54cfd762b
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2018-11-02 Matthew Malcomson <matthew.malcomson@arm.com>
* symtab.c (info_functions_command): Initialize quiet flag.
* stack.c (info_args_command): Likewise.
2018-11-01 Jim Wilson <jimw@sifive.com>
* riscv-tdep.c (riscv_breakpoint_kind_from_pc): New local unaligned_p.

View file

@ -2303,7 +2303,7 @@ info_args_command (const char *args, int from_tty)
{
std::string regexp;
std::string t_regexp;
bool quiet;
bool quiet = false;
while (args != NULL
&& extract_info_print_args (&args, &quiet, &regexp, &t_regexp))

View file

@ -4760,7 +4760,7 @@ info_functions_command (const char *args, int from_tty)
{
std::string regexp;
std::string t_regexp;
bool quiet;
bool quiet = false;
while (args != NULL
&& extract_info_print_args (&args, &quiet, &regexp, &t_regexp))