public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
From: Kevin Buettner <kevinb@redhat.com>
To: insight@sourceware.org
Subject: Re: [PATCH] Rotate ChangeLog, fix build issues
Date: Tue, 12 Apr 2011 00:24:00 -0000	[thread overview]
Message-ID: <20110411172402.2ea07ba2@mesquite.lan> (raw)
In-Reply-To: <4D9FDFD8.7080109@redhat.com>

> 2011-04-08  Keith Seitz  <keiths@redhat.com>
> 
> 	* generic/gdbtk-bp.c (tracepoint_exists): Remove recently
> 	removed "not_found_ptr" argument from call to decode_line_1.
> 	* generic/gdbtk-stack.c (gdb_get_vars_command): Likewise.
> 	* generic/gdbtk-cmds.c (gdb_get_line_command): Likewise.
> 	(gdb_get_file_command): Likewise.
> 	(gdb_get_function_command): Likewise.

Was this actually committed?

I was about to post a similar patch, but then noticed that you had
already posted it.  (Don't see it committed though.)


In addition to the above, I do have one other change which avoids
an error along the lines of `buffer' being used before being initalized
in gdbtk-register.c's get_register().  It appears that valaddr was added
with the intention of replacing buffer[], but the switch from one to
the other (where buffer is used) was forgotten about.

Here's that change:

	* gdbtk-register.c (get_register): Delete declaration of `buffer'.
	Use `valaddr' in its place.

Index: gdbtk/generic/gdbtk-register.c
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-register.c,v
retrieving revision 1.40
diff -u -p -r1.40 gdbtk-register.c
--- gdbtk/generic/gdbtk-register.c	8 Apr 2011 23:32:42 -0000	1.40
+++ gdbtk/generic/gdbtk-register.c	12 Apr 2011 00:08:28 -0000
@@ -276,7 +276,6 @@ get_register (int regnum, map_arg arg)
   CORE_ADDR addr;
   enum lval_type lval;
   struct type *reg_vtype;
-  gdb_byte buffer[MAX_REGISTER_SIZE];
   int format;
   struct cleanup *old_chain = NULL;
   struct ui_file *stb;
@@ -330,7 +329,7 @@ get_register (int regnum, map_arg arg)
 	{
 	  int idx = ((gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
 		     ? j : register_size (gdbarch, regnum) - 1 - j);
-	  sprintf (ptr, "%02x", (unsigned char) buffer[idx]);
+	  sprintf (ptr, "%02x", (unsigned char) valaddr[idx]);
 	  ptr += 2;
 	}
       fputs_unfiltered (buf, stb);

  reply	other threads:[~2011-04-12  0:24 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-08 23:35 Keith Seitz
2011-04-09  4:14 ` Hui Zhu
2011-04-09  4:26   ` Keith Seitz
2011-04-12  0:24     ` Kevin Buettner [this message]
2011-04-12  5:13       ` Keith Seitz
2011-04-12 15:27         ` Hui Zhu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110411172402.2ea07ba2@mesquite.lan \
    --to=kevinb@redhat.com \
    --cc=insight@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).