fall through to evidence measurements if no file measurements must be done

This commit is contained in:
Andreas Steffen 2012-08-16 09:15:36 +02:00
parent 81fbbc5381
commit b8a4135dcb
1 changed files with 7 additions and 1 deletions

View File

@ -197,7 +197,13 @@ bool imv_attestation_build(linked_list_t *attr_list,
attr_list->insert_last(attr_list, attr);
}
enumerator->destroy(enumerator);
break;
/* do we have any file metadata or measurement requests? */
if (attr_list->get_count(attr_list))
{
break;
}
/* fall through to next state */
}
case IMV_ATTESTATION_STATE_COMP_EVID:
{