Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* A fix for bug 13259 - gdb sometimes crashes with SIGSEGV when printing variables
@ 2011-10-05 14:07 Martin Runge
  2011-10-05 15:02 ` Joel Brobecker
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Runge @ 2011-10-05 14:07 UTC (permalink / raw)
  To: gdb-patches

Hello together,
here is a possible fix for a gdb crash I just filed as bug 13259:


--- a/gdb/varobj.c      Wed Sep 28 12:36:27 2011 +0200
+++ b/gdb/varobj.c      Wed Oct 05 15:53:04 2011 +0200
@@ -2640,7 +2640,7 @@
   opts.raw = 1;
   if (thevalue)
     LA_PRINT_STRING (stb, type, thevalue, len, encoding, 0, &opts);
-  else if (string_print)
+  else if (string_print && type != NULL)
     val_print_string (type, encoding, str_addr, len, stb, &opts);
   else
     common_val_print (value, stb, 0, &opts, current_language);


I observed the "type" parameter beeing NULL _and_ "string_print" !=0
several times, which leads to a SIGSEGV inside val_print_string.

Maybe the cause is a few lines earlier in the same function
(value_get_print_value), where string_print is set to 1 without having
resolved "type".

best regards
Martin


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-10-06 18:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-05 14:07 A fix for bug 13259 - gdb sometimes crashes with SIGSEGV when printing variables Martin Runge
2011-10-05 15:02 ` Joel Brobecker
2011-10-05 15:11   ` Martin Runge
2011-10-06 13:27     ` Martin Runge
2011-10-06 18:37       ` Joel Brobecker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox