Commit a0e097bb authored by Tim Peters's avatar Tim Peters

BTree_findRangeEnd(): Rearranged the persistence macros to cut down a

little on redundant activations.
parent d82d25a3
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
****************************************************************************/ ****************************************************************************/
#define BTREETEMPLATE_C "$Id: BTreeTemplate.c,v 1.48 2002/06/13 04:28:06 tim_one Exp $\n" #define BTREETEMPLATE_C "$Id: BTreeTemplate.c,v 1.49 2002/06/13 04:49:01 tim_one Exp $\n"
/* /*
** _BTree_get ** _BTree_get
...@@ -967,18 +967,18 @@ BTree_findRangeEnd(BTree *self, PyObject *keyarg, int low, ...@@ -967,18 +967,18 @@ BTree_findRangeEnd(BTree *self, PyObject *keyarg, int low,
} }
/* High-end search: if it's possible to go left, do so. */ /* High-end search: if it's possible to go left, do so. */
else if (deepest_smaller) { else if (deepest_smaller) {
UNLESS(PER_USE(deepest_smaller)) goto Done;
if (deepest_smaller_is_btree) { if (deepest_smaller_is_btree) {
UNLESS(PER_USE(deepest_smaller)) goto Done;
/* We own the reference this returns. */ /* We own the reference this returns. */
pbucket = BTree_lastBucket(BTREE(deepest_smaller)); pbucket = BTree_lastBucket(BTREE(deepest_smaller));
PER_ALLOW_DEACTIVATION(deepest_smaller);
PER_ACCESSED(deepest_smaller);
if (pbucket == NULL) goto Done; /* error */
} }
else { else {
pbucket = BUCKET(deepest_smaller); pbucket = BUCKET(deepest_smaller);
Py_INCREF(pbucket); Py_INCREF(pbucket);
} }
PER_ALLOW_DEACTIVATION(deepest_smaller);
PER_ACCESSED(deepest_smaller);
if (pbucket) {
UNLESS(PER_USE(pbucket)) goto Done; UNLESS(PER_USE(pbucket)) goto Done;
result = 1; result = 1;
*bucket = pbucket; /* transfer ownership to caller */ *bucket = pbucket; /* transfer ownership to caller */
...@@ -986,8 +986,6 @@ BTree_findRangeEnd(BTree *self, PyObject *keyarg, int low, ...@@ -986,8 +986,6 @@ BTree_findRangeEnd(BTree *self, PyObject *keyarg, int low,
PER_ALLOW_DEACTIVATION(pbucket); PER_ALLOW_DEACTIVATION(pbucket);
PER_ACCESSED(pbucket); PER_ACCESSED(pbucket);
} }
/* pbucket NULL is an error */
}
else else
result = 0; /* simply not found */ result = 0; /* simply not found */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment