* pthread_mutex_lock.c (__pthread_mutex_lock): Remove unused label out.

This commit is contained in:
Ulrich Drepper 2009-01-25 17:58:06 +00:00
parent 25e8417764
commit 563ee1cb34
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-01-25 Ulrich Drepper <drepper@redhat.com>
* pthread_mutex_lock.c (__pthread_mutex_lock): Remove unused label out.
2009-01-08 Ulrich Drepper <drepper@redhat.com>
* sysdeps/pthread/list.h (list_add): Initialize new element first.

View File

@ -121,7 +121,6 @@ __pthread_mutex_lock (mutex)
goto simple;
}
out:
/* Record the ownership. */
mutex->__data.__owner = id;
#ifndef NO_INCR