windows: Remove useless assignment in put_thread()

This commit is contained in:
Tobias Brunner 2014-07-02 11:41:14 +02:00
parent 0e48f67562
commit 32a262e7a1
1 changed files with 1 additions and 1 deletions

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);