public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Fix insight/347 (watch win crash)
@ 2010-04-29 21:01 Keith Seitz
  0 siblings, 0 replies; only message in thread
From: Keith Seitz @ 2010-04-29 21:01 UTC (permalink / raw)
  To: insight

[-- Attachment #1: Type: text/plain, Size: 428 bytes --]

Hi,

I've committed the attached patch which fixes some API changes in 
varobj_set_value that I missed (a looooong time ago).

Keith

ChangeLog
2010-04-29  Keith Seitz  <keiths@redhat.com>

	insight/347
	* generic/gdbtk-varobj.c (variable_value): Use TRY_CATCH
	when calling varobj_set_value.
	* library/vartree.itb (changeValue): Make note of new
	assumption that input is decimal (unless prefixed to change
	the input radix).

[-- Attachment #2: vartree-changeValue-crash.patch --]
[-- Type: text/plain, Size: 2483 bytes --]

Index: generic/gdbtk-varobj.c
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-varobj.c,v
retrieving revision 1.25
diff -u -p -r1.25 gdbtk-varobj.c
--- generic/gdbtk-varobj.c	17 Sep 2009 07:00:48 -0000	1.25
+++ generic/gdbtk-varobj.c	29 Apr 2010 20:57:25 -0000
@@ -1,5 +1,6 @@
 /* Variable user interface layer for GDB, the GNU debugger.
-   Copyright (C) 1999, 2000, 2001, 2002, 2008 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001, 2002, 2008, 2010
+   Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -22,6 +23,7 @@
 #include "value.h"
 #include "gdb_string.h"
 #include "varobj.h"
+#include "exceptions.h"
 
 #include <tcl.h>
 #include "gdbtk.h"
@@ -574,9 +576,16 @@ variable_value (Tcl_Interp *interp, int 
       if (varobj_get_attributes (var) & 0x00000001 /* Editable? */ )
 	{
 	  char *s;
+	  int ok = 0;
+	  struct gdb_exception e;
 
 	  s = Tcl_GetStringFromObj (objv[2], NULL);
-	  if (!varobj_set_value (var, s))
+	  TRY_CATCH (e, RETURN_MASK_ERROR)
+	    {
+	      ok = varobj_set_value (var, s);
+	    }
+
+	  if (e.reason < 0 || !ok)
             {
 	      gdbtk_set_result (interp, "Could not assign expression to variable object");
 	      return TCL_ERROR;
Index: library/vartree.itb
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/library/vartree.itb,v
retrieving revision 1.8
diff -u -p -r1.8 vartree.itb
--- library/vartree.itb	24 Apr 2009 03:38:49 -0000	1.8
+++ library/vartree.itb	29 Apr 2010 20:57:25 -0000
@@ -1,5 +1,5 @@
 # Variable tree implementation for Insight.
-# Copyright (C) 2002, 2009 Red Hat, Inc.
+# Copyright (C) 2002, 2009, 2010 Red Hat, Inc.
 #
 # This program is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License (GPL) as published by
@@ -286,6 +286,14 @@ itcl::body  VarTree::changeValue {j} {
     unedit $j
     return
   }
+
+  # NOTE: Varobj requires decimal input radix. So either
+  # we must assume that all input is decimal (unless prefixed by
+  # "0x"), or we assume that the input radix is the same as the
+  # variable's display radix.
+  #
+  # I think that consistency wins out over convenience here. We will
+  # require users to prefix non-decimal expressions.
   if {[catch {$entryobj value $new} errTxt]} {
     # gdbtk-varobj doesn't actually return meaningful error messages
     # so use a generic one.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-04-29 21:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-29 21:01 [PATCH] Fix insight/347 (watch win crash) Keith Seitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).