summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-01-25 17:58:06 +0000
committerUlrich Drepper <drepper@redhat.com>2009-01-25 17:58:06 +0000
commit563ee1cb34198f649712721fc658c7bef9e05dd7 (patch)
tree42782c8b35d16a41edd19e3d7f597ef36428c9c9
parent25e84177645ef6e640037e5f4b69ff0ac13d31cc (diff)
* pthread_mutex_lock.c (__pthread_mutex_lock): Remove unused label out.
-rw-r--r--nptl/ChangeLog4
-rw-r--r--nptl/pthread_mutex_lock.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index 1fa74054dc..4755c789d1 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -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.
diff --git a/nptl/pthread_mutex_lock.c b/nptl/pthread_mutex_lock.c
index 4cb98beefb..406e588fdb 100644
--- a/nptl/pthread_mutex_lock.c
+++ b/nptl/pthread_mutex_lock.c
@@ -121,7 +121,6 @@ __pthread_mutex_lock (mutex)
goto simple;
}
- out:
/* Record the ownership. */
mutex->__data.__owner = id;
#ifndef NO_INCR