Remove dead code from windows_nat_target::detach
authorTom Tromey <tromey@adacore.com>
Fri, 22 Jul 2022 18:55:27 +0000 (12:55 -0600)
committerTom Tromey <tromey@adacore.com>
Mon, 25 Jul 2022 13:29:58 +0000 (07:29 -0600)
windows_nat_target::detach has a variable 'detached' that is only set
after a call to 'error'.  However, this can't happen because 'error'
throws an exception.

This patch removes the dead code.

gdb/windows-nat.c

index 43a2c112db5b8cd621c3bc6043a0ad04bf2d9cfc..9265ed9e632688b7c9900be33adcb8d1bb809ad5 100644 (file)
@@ -1912,22 +1912,16 @@ windows_nat_target::attach (const char *args, int from_tty)
 void
 windows_nat_target::detach (inferior *inf, int from_tty)
 {
-  int detached = 1;
-
   ptid_t ptid = minus_one_ptid;
   resume (ptid, 0, GDB_SIGNAL_0);
 
   if (!DebugActiveProcessStop (windows_process.current_event.dwProcessId))
-    {
-      error (_("Can't detach process %u (error %u)"),
-            (unsigned) windows_process.current_event.dwProcessId,
-            (unsigned) GetLastError ());
-      detached = 0;
-    }
+    error (_("Can't detach process %u (error %u)"),
+          (unsigned) windows_process.current_event.dwProcessId,
+          (unsigned) GetLastError ());
   DebugSetProcessKillOnExit (FALSE);
 
-  if (detached)
-    target_announce_detach (from_tty);
+  target_announce_detach (from_tty);
 
   x86_cleanup_dregs ();
   switch_to_no_thread ();