fix: klockwork reported success / failure check fix

This commit is contained in:
Mudit Vats
2021-07-19 13:25:33 -07:00
parent f6666d857b
commit 913fa41b17

View File

@@ -282,8 +282,10 @@ bool cmd_get_certificate_hashes(std::vector<cert_hash_entry>& hash_entries)
for (int i = 0; i < (int) amt_hash_handles.Length; i++) for (int i = 0; i < (int) amt_hash_handles.Length; i++)
{ {
// get each entry // get each entry
AMT_STATUS status = pthi_GetCertificateHashEntry(amt_hash_handles.Handles[i], &certhash_entry); AMT_STATUS amt_status = pthi_GetCertificateHashEntry(amt_hash_handles.Handles[i], &certhash_entry);
if (amt_status == 0)
{
int hashSize; int hashSize;
cert_hash_entry tmp; cert_hash_entry tmp;
switch (certhash_entry.HashAlgorithm) { switch (certhash_entry.HashAlgorithm) {
@@ -329,6 +331,7 @@ bool cmd_get_certificate_hashes(std::vector<cert_hash_entry>& hash_entries)
hash_entries.push_back(tmp); hash_entries.push_back(tmp);
} }
} }
}
return true; return true;
} }