garbage collector might release space still in use.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1543 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc 2006-02-14 17:20:49 +00:00
parent 46f90fc6aa
commit 5cacbd8f2a

View File

@ -823,7 +823,7 @@ find_ref_in_dbtable(CODEADDR entry)
rb_red_blk_node *current = db_root->left;
while (current != db_nil) {
if (current->key < entry && current->lim > entry) {
if (current->key <= entry && current->lim > entry) {
return current;
}
if (entry < current->key)