From: Julio Faracco Date: Wed, 7 Sep 2016 21:43:53 +0000 (-0300) Subject: security: Fixing wrong label in virt-aa-helper.c. X-Git-Tag: v2.3.0-rc1~197 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe94ee5db5461970743f52a85fc295af023f50bf;p=thirdparty%2Flibvirt.git security: Fixing wrong label in virt-aa-helper.c. There is an issue with a wrong label inside vah_add_path(). The compilation fails with the error: make[3]: Entering directory '/tmp/libvirt/src' CC security/virt_aa_helper-virt-aa-helper.o security/virt-aa-helper.c: In function 'vah_add_path': security/virt-aa-helper.c:769:9: error: label 'clean' used but not defined goto clean; This patch moves 'clean' label to 'cleanup' label. Signed-off-by: Julio Faracco --- diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c index 2aa6e2899e..fc0107662d 100644 --- a/src/security/virt-aa-helper.c +++ b/src/security/virt-aa-helper.c @@ -766,7 +766,7 @@ vah_add_path(virBufferPtr buf, const char *path, const char *perms, bool recursi } if (VIR_STRDUP_QUIET(perms_new, perms) < 0) - goto clean; + goto cleanup; if (strchr(perms_new, 'w') != NULL) { readonly = false;