windows: Remove useless assignment in put_thread()

This commit is contained in:
Tobias Brunner
2014-07-02 12:12:05 +02:00
parent 0e48f67562
commit 32a262e7a1
+1 -1
View File
@@ -146,7 +146,7 @@ static void put_thread(private_thread_t *this)
old = set_leak_detective(FALSE);
threads_lock->lock(threads_lock);
this = threads->put(threads, (void*)(uintptr_t)this->id, this);
threads->put(threads, (void*)(uintptr_t)this->id, this);
threads_lock->unlock(threads_lock);
set_leak_detective(old);