1
1
This commit was SVN r7504.
Этот коммит содержится в:
Galen Shipman 2005-09-24 16:58:07 +00:00
родитель d1246be47e
Коммит 02ce7a176e

@ -81,9 +81,9 @@ struct mca_rcache_rb_tree_item_t * mca_rcache_rb_tree_find(
ompi_rb_tree_find(&rcache->rb_tree, &key);
if(NULL != found ) {
if((void*) found->reg->base < base ||
(void*) found->reg->bound > base){
return NULL;
if((void*) found->reg->base > base ||
(void*) found->reg->bound < base){
assert(0);
}
}
return found;