properly close Tspi_Context

This commit is contained in:
Andreas Steffen
2011-09-10 22:39:56 +02:00
parent b97ca14d35
commit 04d7ef6ece
+4 -2
View File
@@ -486,7 +486,7 @@ static char* extract_platform_info(void)
len = sizeof(buf)-1 + (pos - buf); len = sizeof(buf)-1 + (pos - buf);
strncpy(pos, uninfo.machine, len); strncpy(pos, uninfo.machine, len);
DBG1(DBG_IMV, "platform is '%s'", value); DBG1(DBG_IMC, "platform is '%s'", value);
return strdup(value); return strdup(value);
} }
@@ -503,7 +503,8 @@ static bool has_tpm(private_pts_t *this)
result = Tspi_Context_Create(&hContext); result = Tspi_Context_Create(&hContext);
if (result != TSS_SUCCESS) if (result != TSS_SUCCESS)
{ {
goto err; DBG1(DBG_IMC, "TPM context could not be created: tss error 0x%x", result);
return FALSE;
} }
result = Tspi_Context_Connect(hContext, NULL); result = Tspi_Context_Connect(hContext, NULL);
if (result != TSS_SUCCESS) if (result != TSS_SUCCESS)
@@ -528,6 +529,7 @@ static bool has_tpm(private_pts_t *this)
err: err:
DBG1(DBG_IMC, "TPM not available: tss error 0x%x", result); DBG1(DBG_IMC, "TPM not available: tss error 0x%x", result);
Tspi_Context_Close(hContext);
return FALSE; return FALSE;
} }