Skip to content
Snippets Groups Projects
Commit e3ab329d authored by Sang Seok Lim's avatar Sang Seok Lim
Browse files

Fixing bug in extensible filter indexing

parent 190c17b3
No related branches found
No related tags found
No related merge requests found
......@@ -420,8 +420,12 @@ ext_candidates(
* Currently Only Component Indexing for componentFilterMatch is supported
* Indexing for an extensible filter is not supported yet
*/
if ( !mra->ma_cf )
if ( !mra->ma_cf ) {
struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
BDB_IDL_ALL( bdb, ids );
return 0;
}
return comp_candidates ( op, mra, mra->ma_cf, ids, tmp, stack);
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment