diff options
Diffstat (limited to 'pthread_mutex_destroy.c')
-rw-r--r-- | pthread_mutex_destroy.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pthread_mutex_destroy.c b/pthread_mutex_destroy.c index c2289d0..1ff9ebe 100644 --- a/pthread_mutex_destroy.c +++ b/pthread_mutex_destroy.c @@ -83,7 +83,6 @@ pthread_mutex_destroy (pthread_mutex_t * mutex) if (result == 0) { (void) sem_destroy (&mx->wait_sema); - DeleteCriticalSection (&mx->wait_cs); free (mx); } else |