public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdbserver: Fixup previous patch
@ 2022-03-21 17:01 Pedro Alves
  0 siblings, 0 replies; only message in thread
From: Pedro Alves @ 2022-03-21 17:01 UTC (permalink / raw)
  To: gdb-cvs

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

commit 4414150d33212f5f395c3bf8a940bccf80ffc508
Author: Pedro Alves <pedro@palves.net>
Date:   Mon Mar 21 16:58:23 2022 +0000

    gdbserver: Fixup previous patch
    
    The previous prepare_resume_reply change missed updating the 'buf'
    reference that overwrites the 'T', so if 'buf' was advanced, we'd
    still overwrite the wrong character.  This fixes it.
    
    Change-Id: Ia8ce433366b85af4e268c1c49e7b447da3130a4d

Diff:
---
 gdbserver/remote-utils.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gdbserver/remote-utils.cc b/gdbserver/remote-utils.cc
index 0599cc9c4f1..db9b2a66f3c 100644
--- a/gdbserver/remote-utils.cc
+++ b/gdbserver/remote-utils.cc
@@ -1144,7 +1144,7 @@ prepare_resume_reply (char *buf, ptid_t ptid, const target_waitstatus &status)
 	    gdb_assert (buf_start[0] == 'T');
 	    gdb_assert (isxdigit (buf_start[1]));
 	    gdb_assert (isxdigit (buf_start[2]));
-	    *buf = 'S';
+	    buf_start[0] = 'S';
 	    buf_start[3] = '\0';
 	    break;
 	  }


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

only message in thread, other threads:[~2022-03-21 17:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-21 17:01 [binutils-gdb] gdbserver: Fixup previous patch Pedro Alves

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).