gdbserver: remove unused for loop
authorEnze Li <enze.li@hotmail.com>
Thu, 22 Sep 2022 13:17:31 +0000 (21:17 +0800)
committerEnze Li <enze.li@hotmail.com>
Sat, 24 Sep 2022 03:59:59 +0000 (11:59 +0800)
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.

gdbserver/server.cc

index c619206d5d2d5f7af85b2c9c15f3ef4b0d63080c..366a843ea894d784f87c86072e20eddec6c811c2 100644 (file)
@@ -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, ';');