This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] [PR gdb/19495] Removed redundant line remote-utils.c


The tests successfully ran after the patch.
Also I've requested for copyright assignment. I'm not sure if I really
need it for this patch, do I?


2016-09-02 Akash Trehan <akash.trehan123@gmail.com>


gdb/gdbserver/ChangeLog:

PR gdb/19495

* remote-utils.c (relocate_instruction): Remove redundant strcpy()

call writing data to own_buf.

---

gdb/gdbserver/remote-utils.c | 1 -

1 file changed, 1 deletion(-)




diff --git a/gdb/gdbserver/remote-utils.c b/gdb/gdbserver/remote-utils.c

index 768d2e9..1d51010 100644

--- a/gdb/gdbserver/remote-utils.c

+++ b/gdb/gdbserver/remote-utils.c

@@ -1579,7 +1579,6 @@ relocate_instruction (CORE_ADDR *to, CORE_ADDR oldloc)

ULONGEST written = 0;



/* Send the request. */

- strcpy (own_buf, "qRelocInsn:");

sprintf (own_buf, "qRelocInsn:%s;%s", paddress (oldloc),

paddress (*to));

if (putpkt (own_buf) < 0)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]