summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'process.c')
-rw-r--r--process.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/process.c b/process.c
index 94060de148..1ca7847df2 100644
--- a/process.c
+++ b/process.c
@@ -1106,7 +1106,11 @@ waitpid_cleanup(VALUE x)
{
struct waitpid_state *w = (struct waitpid_state *)x;
- if (w->ret == 0) {
+ /*
+ * XXX w->ret is sometimes set but list_del is still needed, here,
+ * Not sure why, so we unconditionally do list_del here:
+ */
+ if (TRUE || w->ret == 0) {
rb_vm_t *vm = rb_ec_vm_ptr(w->ec);
rb_native_mutex_lock(&vm->waitpid_lock);