Changeset 825
- Timestamp:
- 07/14/07 18:44:15 (1 year ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/cherokee/avl.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r824 r825 1 1 2007-07-14 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * cherokee/avl.c (cherokee_avl_del): Return the value in the third 4 parameter (double pointer). 2 5 3 6 * cherokee/iocache.c: Now it uses an AVL tree instead of a cherokee/trunk/cherokee/avl.c
r823 r825 358 358 while (true) { 359 359 re = compare_buffers (key, &node->id); 360 if (re == 0) 360 if (re == 0) { 361 if (value) 362 *value = node->value; 361 363 break; 362 else if (re < 0) {364 } else if (re < 0) { 363 365 if (!node->left_child) 364 366 return ret_not_found;