This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] QUIET flag initialization missing in 2 places.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=d54cfd762b060ad167bd8e947e4ea212c0eb9b83

commit d54cfd762b060ad167bd8e947e4ea212c0eb9b83
Author: Philippe Waroquiers <philippe.waroquiers@skynet.be>
Date:   Fri Nov 2 14:20:59 2018 +0100

    QUIET flag initialization missing in 2 places.
    
    Fix by Matthew Malcomson  <matthew.malcomson@arm.com>
    
    Pushed as obvious.

Diff:
---
 gdb/ChangeLog | 5 +++++
 gdb/stack.c   | 2 +-
 gdb/symtab.c  | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8e40537..6decf3d 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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.
diff --git a/gdb/stack.c b/gdb/stack.c
index abbaf5d..f34d7b2 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, &regexp, &t_regexp))
diff --git a/gdb/symtab.c b/gdb/symtab.c
index cd27a75..7649908 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -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))


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]