From d37a3a1d6c6508f235965185453602ba310cc66e Mon Sep 17 00:00:00 2001 From: Guannan Ren Date: Wed, 17 Oct 2012 11:28:28 +0800 Subject: [PATCH] selinux: remove unused variables in socket labelling --- src/security/security_selinux.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/security/security_selinux.c b/src/security/security_selinux.c index 85419ba41d..b5108abb29 100644 --- a/src/security/security_selinux.c +++ b/src/security/security_selinux.c @@ -1634,8 +1634,6 @@ virSecuritySELinuxSetSecurityDaemonSocketLabel(virSecurityManagerPtr mgr, { /* TODO: verify DOI */ virSecurityLabelDefPtr secdef; - context_t execcon = NULL; - context_t proccon = NULL; security_context_t scon = NULL; char *str = NULL; int rc = -1; @@ -1678,8 +1676,6 @@ done: if (security_getenforce() != 1) rc = 0; - if (execcon) context_free(execcon); - if (proccon) context_free(proccon); freecon(scon); VIR_FREE(str); return rc; -- GitLab