selinux: remove unused variables in socket labelling

(cherry picked from commit d37a3a1d6c)
This commit is contained in:
Guannan Ren 2012-10-17 11:28:28 +08:00 committed by Cole Robinson
parent 2716c78c3f
commit 4c2a38d1ed

View File

@ -1626,8 +1626,6 @@ virSecuritySELinuxSetSecurityDaemonSocketLabel(virSecurityManagerPtr mgr,
{ {
/* TODO: verify DOI */ /* TODO: verify DOI */
virSecurityLabelDefPtr secdef; virSecurityLabelDefPtr secdef;
context_t execcon = NULL;
context_t proccon = NULL;
security_context_t scon = NULL; security_context_t scon = NULL;
char *str = NULL; char *str = NULL;
int rc = -1; int rc = -1;
@ -1670,8 +1668,6 @@ done:
if (security_getenforce() != 1) if (security_getenforce() != 1)
rc = 0; rc = 0;
if (execcon) context_free(execcon);
if (proccon) context_free(proccon);
freecon(scon); freecon(scon);
VIR_FREE(str); VIR_FREE(str);
return rc; return rc;