diff options
author | Philippe Waroquiers <philippe.waroquiers@skynet.be> | 2018-11-02 14:20:59 +0100 |
---|---|---|
committer | Philippe Waroquiers <philippe.waroquiers@skynet.be> | 2018-11-02 14:20:59 +0100 |
commit | d54cfd762b060ad167bd8e947e4ea212c0eb9b83 (patch) | |
tree | 64496646967862cdd88891a68af6cdb6ab7d131a /gdb/stack.c | |
parent | [GOLD] make clean (diff) | |
download | binutils-gdb-d54cfd762b060ad167bd8e947e4ea212c0eb9b83.tar.gz binutils-gdb-d54cfd762b060ad167bd8e947e4ea212c0eb9b83.tar.bz2 binutils-gdb-d54cfd762b060ad167bd8e947e4ea212c0eb9b83.zip |
QUIET flag initialization missing in 2 places.
Fix by Matthew Malcomson <matthew.malcomson@arm.com>
Pushed as obvious.
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index abbaf5d4a7a..f34d7b2a17e 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -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, ®exp, &t_regexp)) |