brianp      2002/07/20 15:51:50

  Modified:    tables   apr_tables.c
  Log:
  remove an extraneous initialization left over from the last change to 
apr_table_unset
  
  Revision  Changes    Path
  1.38      +1 -1      apr/tables/apr_tables.c
  
  Index: apr_tables.c
  ===================================================================
  RCS file: /home/cvs/apr/tables/apr_tables.c,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- apr_tables.c      20 Jul 2002 21:28:50 -0000      1.37
  +++ apr_tables.c      20 Jul 2002 22:51:50 -0000      1.38
  @@ -637,7 +637,7 @@
   APR_DECLARE(void) apr_table_unset(apr_table_t *t, const char *key)
   {
       apr_table_entry_t *next_elt;
  -    apr_table_entry_t *end_elt = next_elt + t->a.nelts;
  +    apr_table_entry_t *end_elt;
       apr_table_entry_t *dst_elt;
       apr_uint32_t checksum;
       int hash;
  
  
  

Reply via email to