summaryrefslogtreecommitdiff
path: root/threading_pthread.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-03-06 13:55:27 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-03-06 13:55:27 +0100
commit94b26d102e282a415980083866048aaf6bd9f4c1 (patch)
tree39fdce79f8ac0633922fc18b339e7c0aee0cc8c1 /threading_pthread.c
parent9c98bebdb84ab663c79cbf3e81e366c0efc19225 (diff)
fixed removing 1st column;
few albumart code improvements
Diffstat (limited to 'threading_pthread.c')
-rw-r--r--threading_pthread.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/threading_pthread.c b/threading_pthread.c
index 3b04e7c8..96e464b6 100644
--- a/threading_pthread.c
+++ b/threading_pthread.c
@@ -90,8 +90,6 @@ mutex_create (void) {
void
mutex_free (uintptr_t _mtx) {
pthread_mutex_t *mtx = (pthread_mutex_t *)_mtx;
- mutex_lock (_mtx);
- mutex_unlock (_mtx);
pthread_mutex_destroy (mtx);
free (mtx);
}