public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdbserver: remove unused for loop
@ 2022-09-24  4:01 Enze Li
  0 siblings, 0 replies; only message in thread
From: Enze Li @ 2022-09-24  4:01 UTC (permalink / raw)
  To: gdb-cvs

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

commit b7098e650c9f1ced654c939bebd4b70e7d028132
Author: Enze Li <enze.li@hotmail.com>
Date:   Thu Sep 22 21:17:31 2022 +0800

    gdbserver: remove unused for loop
    
    In this commit,
    
      commit cf6c1e710ee162a5adb0ae47acb731f2bfecc956
      Date:   Mon Jul 11 20:53:48 2022 +0800
    
        gdbserver: remove unused variable
    
    I removed an unused variable in handle_v_run.  Pedro then pointed out
    that the for loop after it was also unused.  After a period of smoke
    testing, no exceptions were found.
    
    Tested on x86_64-linux.

Diff:
---
 gdbserver/server.cc | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/gdbserver/server.cc b/gdbserver/server.cc
index c619206d5d2..366a843ea89 100644
--- a/gdbserver/server.cc
+++ b/gdbserver/server.cc
@@ -2984,9 +2984,6 @@ handle_v_run (char *own_buf)
   char *new_program_name = NULL;
   int i;
 
-  for (p = own_buf + strlen ("vRun;"); p && *p; p = strchr (p, ';'))
-    p++;
-
   for (i = 0, p = own_buf + strlen ("vRun;"); *p; p = next_p, ++i)
     {
       next_p = strchr (p, ';');

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

only message in thread, other threads:[~2022-09-24  4:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-24  4:01 [binutils-gdb] gdbserver: remove unused for loop Enze Li

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