Changeset 826

Show
Ignore:
Timestamp:
07/14/07 18:48:13 (1 year ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/ChangeLog

    r825 r826  
    112007-07-14  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * cherokee/avl.c (cherokee_avl_del): Bugfix. Recursion array base 
     4        is 0, not 1. 
    25 
    36        * cherokee/avl.c (cherokee_avl_del): Return the value in the third 
  • cherokee/trunk/cherokee/avl.c

    r825 r826  
    354354                return ret_not_found; 
    355355 
    356         path[idx] = NULL; 
     356        path[0] = NULL; 
    357357 
    358358        while (true) {