You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ia...@apache.org on 2001/12/14 05:35:21 UTC

cvs commit: apr/memory/unix apr_pools.c

ianh        01/12/13 20:35:21

  Modified:    memory/unix apr_pools.c
  Log:
  remember us pool people working in evil-empire land
  
  (variable name was changed in previous commit)
  
  Revision  Changes    Path
  1.119     +4 -4      apr/memory/unix/apr_pools.c
  
  Index: apr_pools.c
  ===================================================================
  RCS file: /home/cvs/apr/memory/unix/apr_pools.c,v
  retrieving revision 1.118
  retrieving revision 1.119
  diff -u -r1.118 -r1.119
  --- apr_pools.c	2001/12/14 02:16:55	1.118
  +++ apr_pools.c	2001/12/14 04:35:21	1.119
  @@ -1114,10 +1114,10 @@
        * finished with the proc_t.
        */
       {
  -        for (p = procs; p; p = p->next) {
  -            if (p->pid->hproc) {
  -                CloseHandle(p->pid->hproc);
  -                p->pid->hproc = NULL;
  +        for (pc = procs; pc; pc = pc->next) {
  +            if (pc->pid->hproc) {
  +                CloseHandle(pc->pid->hproc);
  +                pc->pid->hproc = NULL;
               }
           }
       }