Removed redundant line remote-utils.c
authorAkash Trehan <akash.trehan123@gmail.com>
Fri, 2 Sep 2016 08:18:59 +0000 (13:48 +0530)
committerManish Goregaokar <manish@mozilla.com>
Sat, 3 Sep 2016 10:55:07 +0000 (16:25 +0530)
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/ChangeLog
gdb/gdbserver/remote-utils.c

index 97d8ca5..629254f 100644 (file)
@@ -1,3 +1,9 @@
+2016-09-02  Akash Trehan  <akash.trehan123@gmail.com>
+
+       PR gdb/19495
+       * remote-utils.c (relocate_instruction): Remove redundant strcpy()
+       call writing data to own_buf.
+
 2016-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
 
        * target.c (mywait): Call target_wait instead of
index 768d2e9..1d51010 100644 (file)
@@ -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)