striker 02/01/14 04:16:59
Modified: memory/unix apr_pools.c
Log:
Fix for the recent fix. Don't tell the recurse function that it
doesn't need to lock...
Revision Changes Path
1.136 +1 -1 apr/memory/unix/apr_pools.c
Index: apr_pools.c
===================================================================
RCS file: /home/cvs/apr/memory/unix/apr_pools.c,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- apr_pools.c 14 Jan 2002 12:13:53 -0000 1.135
+++ apr_pools.c 14 Jan 2002 12:16:59 -0000 1.136
@@ -1438,7 +1438,7 @@
return pool_num_bytes(pool);
#if APR_HAS_THREADS
- return pool_num_bytes_recursive(pool, pool->mutex);
+ return pool_num_bytes_recursive(pool, NULL);
#else
return pool_num_bytes_recursive(pool);
#endif