aboutsummaryrefslogtreecommitdiffstats
path: root/thread_win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread_win32.c')
-rw-r--r--thread_win32.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/thread_win32.c b/thread_win32.c
index 360013db43..13cbbffbef 100644
--- a/thread_win32.c
+++ b/thread_win32.c
@@ -449,7 +449,6 @@ __cond_timedwait(rb_thread_cond_t *cond, rb_thread_lock_t *mutex, unsigned long
struct cond_event_entry *head = (struct cond_event_entry*)cond;
entry.event = CreateEvent(0, FALSE, FALSE, 0);
- entry.mutex = mutex;
/* cond is guarded by mutex */
entry.next = head;