bnicholes 02/02/08 11:11:13
Modified: locks/netware thread_mutex.c
Log:
Removed a workaround for a bug that has been fixed
Revision Changes Path
1.6 +1 -4 apr/locks/netware/thread_mutex.c
Index: thread_mutex.c
===================================================================
RCS file: /home/cvs/apr/locks/netware/thread_mutex.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- thread_mutex.c 19 Dec 2001 16:24:40 -0000 1.5
+++ thread_mutex.c 8 Feb 2002 19:11:13 -0000 1.6
@@ -108,10 +108,7 @@
APR_DECLARE(apr_status_t) apr_thread_mutex_unlock(apr_thread_mutex_t *mutex)
{
- if (NXMutexDepth(mutex->mutex) > 0) {
- NXUnlock(mutex->mutex);
- }
-
+ NXUnlock(mutex->mutex);
return APR_SUCCESS;
}