commit | d6f8284c2f9aa8042f13fe47c59bd419b34e4245 | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Mon Nov 13 12:53:09 2006 +0100 |
committer | Alexandre Julliard <julliard@winehq.org> | Mon Nov 13 12:53:09 2006 +0100 |
tree | 1bc147aa074b9bcf0b9dcb6aa941d82a57e47d8d | |
parent | 396b0ad126eb239507e7b6cfbd8de621e70ce587 [diff] [blame] |
server: Fix list corruption caused by previous change.
diff --git a/server/process.c b/server/process.c index b66e492..217710a 100644 --- a/server/process.c +++ b/server/process.c
@@ -517,7 +517,7 @@ { struct list *ptr; - if (skip) /* move it to the end of the list */ + if (skip && skip->process == process) /* move it to the end of the list */ { assert( skip->state != TERMINATED ); list_remove( &skip->proc_entry );