Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compat/win32/pthread.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/compat/win32/pthread.c b/compat/win32/pthread.c
index cf53bc61d8..85f8f7920c 100644
--- a/compat/win32/pthread.c
+++ b/compat/win32/pthread.c
@@ -42,10 +42,13 @@ int win32_pthread_join(pthread_t *thread, void **value_ptr)
case WAIT_OBJECT_0:
if (value_ptr)
*value_ptr = thread->arg;
+ CloseHandle(thread->handle);
return 0;
case WAIT_ABANDONED:
+ CloseHandle(thread->handle);
return EINVAL;
default:
+ /* the wait failed, so do not detach */
return err_win_to_posix(GetLastError());
}
}