ITS#3616 don't index the dummy context entry

This commit is contained in:
Howard Chu 2005-04-13 19:05:56 +00:00
parent d9ab73837a
commit 5ef9978afe

View file

@ -340,6 +340,10 @@ int bdb_index_values(
{
int rc;
/* Never index ID 0 */
if ( id == 0 )
return 0;
rc = index_at_values( op, txn, desc,
desc->ad_type, &desc->ad_tags,
vals, id, opid );