striker 02/03/31 02:12:21
Modified: memory/unix apr_pools.c
Log:
Fix a logic bug.
Submitted by: Cliff Woolley
Revision Changes Path
1.164 +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.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- apr_pools.c 19 Mar 2002 15:30:07 -0000 1.163
+++ apr_pools.c 31 Mar 2002 10:12:21 -0000 1.164
@@ -1316,7 +1316,7 @@
pool->owner = apr_os_thread_current();
#endif /* APR_HAS_THREADS */
- if (parent != NULL || parent->allocator != allocator) {
+ if (parent == NULL || parent->allocator != allocator) {
#if APR_HAS_THREADS
apr_status_t rv;