rbb         2004/04/18 10:07:43

  Modified:    tables   apr_hash.c
  Log:
  Fix the compile errors.  I thought I compiled this after making my
  changes to the patch, but I must have just re-compiled the test programs.
  
  Submitted by: Andr� Malo <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.38      +1 -1      apr/tables/apr_hash.c
  
  Index: apr_hash.c
  ===================================================================
  RCS file: /home/cvs/apr/tables/apr_hash.c,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- apr_hash.c        18 Apr 2004 12:12:49 -0000      1.37
  +++ apr_hash.c        18 Apr 2004 17:07:43 -0000      1.38
  @@ -102,7 +102,7 @@
   APR_DECLARE(apr_hash_t *) apr_hash_make_custom(apr_pool_t *pool,
                                                  apr_hashfunc_t hash_func)
   {
  -    ht = apr_hash_make(p);
  +    apr_hash_t *ht = apr_hash_make(pool);
       ht->hash_func = hash_func;
       return ht;
   }
  
  
  

Reply via email to