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] Return EXT_LANG_BT_ERROR in one more spot in py-framefilter.c


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

commit 1f111921a0f8e3f62a19808349ff9bcbd4e54043
Author: Tom Tromey <tom@tromey.com>
Date:   Mon Apr 24 21:41:56 2017 -0600

    Return EXT_LANG_BT_ERROR in one more spot in py-framefilter.c
    
    While reading py-framefilter.c, I found one spot where an exception
    could be caught but then not be turned into EXT_LANG_BT_ERROR.  This
    patch fixes this spot.
    
    gdb/ChangeLog
    2018-03-26  Tom Tromey  <tom@tromey.com>
    
    	* python/py-framefilter.c (py_print_single_arg): Return
    	EXT_LANG_BT_ERROR from catch.

Diff:
---
 gdb/ChangeLog               | 5 +++++
 gdb/python/py-framefilter.c | 1 +
 2 files changed, 6 insertions(+)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 4a9b87b..97da811 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 2018-03-26  Tom Tromey  <tom@tromey.com>
 
+	* python/py-framefilter.c (py_print_single_arg): Return
+	EXT_LANG_BT_ERROR from catch.
+
+2018-03-26  Tom Tromey  <tom@tromey.com>
+
 	PR backtrace/15584:
 	* stack.c (backtrace_command_1): Move some code into no-filters
 	"if".
diff --git a/gdb/python/py-framefilter.c b/gdb/python/py-framefilter.c
index 0662e68..6186ffd 100644
--- a/gdb/python/py-framefilter.c
+++ b/gdb/python/py-framefilter.c
@@ -457,6 +457,7 @@ py_print_single_arg (struct ui_out *out,
   CATCH (except, RETURN_MASK_ERROR)
     {
       gdbpy_convert_exception (except);
+      retval = EXT_LANG_BT_ERROR;
     }
   END_CATCH


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