Avoid crash when trying to attach to a terminating process.

diff --git a/server/process.c b/server/process.c
index 2162be2..9b5dd50 100644
--- a/server/process.c
+++ b/server/process.c
@@ -539,9 +539,11 @@
     if (!process->suspend++)
     {
         struct thread *thread = process->thread_list;
-        for (; thread; thread = thread->proc_next)
+        while (thread)
         {
+            struct thread *next = thread->proc_next;
             if (!thread->suspend) stop_thread( thread );
+            thread = next;
         }
     }
 }
@@ -553,9 +555,11 @@
     if (!--process->suspend)
     {
         struct thread *thread = process->thread_list;
-        for (; thread; thread = thread->proc_next)
+        while (thread)
         {
+            struct thread *next = thread->proc_next;
             if (!thread->suspend) continue_thread( thread );
+            thread = next;
         }
     }
 }