public inbox for insight-prs@sourceware.org
help / color / mirror / Atom feed
From: craig@triscend.com
To: insight-gnats@sources.redhat.com
Subject: insight/152: Memory window addresses include an extra '0x'
Date: Wed, 08 May 2002 08:23:00 -0000	[thread overview]
Message-ID: <20020508152045.25437.qmail@sources.redhat.com> (raw)


>Number:         152
>Category:       insight
>Synopsis:       Memory window addresses include an extra '0x'
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Wed May 08 08:23:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     craig@triscend.com
>Release:        unknown-1.0
>Organization:
>Environment:
Windows 2000/Cygwin & Linux with GDB for ARM
>Description:
When the memory window is opeded the addresses displayed in the left most column have an extra 0x, ie. 0x0x00000000
This seems to be due to the fact that sprintf in gdb_update_mem adds an '0x', but core_addr_to_string also adds an 0x.
>How-To-Repeat:
Connect to a target and open the memory window.
>Fix:
The attached file removes the '0x' from the sprintf in gdbtk-cmds.c
>Release-Note:
>Audit-Trail:
>Unformatted:
----gnatsweb-attachment----
Content-Type: text/plain; name="gdbtk-cmds.c.pat"
Content-Disposition: inline; filename="gdbtk-cmds.c.pat"

Index: gdbtk-cmds.c
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-cmds.c,v
retrieving revision 1.56
diff -c -p -r1.56 gdbtk-cmds.c
*** gdbtk-cmds.c	4 Apr 2002 20:38:23 -0000	1.56
--- gdbtk-cmds.c	8 May 2002 15:13:02 -0000
*************** gdb_update_mem (ClientData clientData, T
*** 2622,2628 ****
    for (i = 0; i < nbytes; i += bpr)
      {
        char s[130];
!       sprintf (s, "0x%s", core_addr_to_string (addr + i));
        INDEX ((int) i/bpr, -1);
        Tcl_SetVar2 (interp, "data", index, s, 0);
  
--- 2622,2628 ----
    for (i = 0; i < nbytes; i += bpr)
      {
        char s[130];
!       sprintf (s, "%s", core_addr_to_string (addr + i));
        INDEX ((int) i/bpr, -1);
        Tcl_SetVar2 (interp, "data", index, s, 0);
  


                 reply	other threads:[~2002-05-08 15:23 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20020508152045.25437.qmail@sources.redhat.com \
    --to=craig@triscend.com \
    --cc=insight-gnats@sources.redhat.com \
    /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).