rbb 01/01/02 20:21:35
Modified: lib apr_pools.c
Log:
Fix the compile break in apr_pools.c
Submitted by: Jeff Trawick <[EMAIL PROTECTED]>
Revision Changes Path
1.79 +1 -1 apr/lib/apr_pools.c
Index: apr_pools.c
===================================================================
RCS file: /home/cvs/apr/lib/apr_pools.c,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- apr_pools.c 2001/01/03 00:54:15 1.78
+++ apr_pools.c 2001/01/03 04:21:35 1.79
@@ -688,7 +688,7 @@
return status;
}
#endif
- permanent_pool = apr_make_sub_pool(pglobal);
+ permanent_pool = apr_make_sub_pool(globalp, NULL);
#ifdef ALLOC_STATS
atexit(dump_stats);