From: John Ferlan Date: Sun, 28 Jul 2019 13:20:24 +0000 (-0400) Subject: conf: Remove unnecessary declaration in virDomainCheckpointDefParse X-Git-Tag: v5.6.0-rc1~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bcf3e3a2842a4553e08a6aa894e883e36820f32d;p=thirdparty%2Flibvirt.git conf: Remove unnecessary declaration in virDomainCheckpointDefParse The @creation variable wasn't used - caused a Travis build failure. Signed-off-by: John Ferlan --- diff --git a/src/conf/checkpoint_conf.c b/src/conf/checkpoint_conf.c index 30c6d2e717..5f4c275dd8 100644 --- a/src/conf/checkpoint_conf.c +++ b/src/conf/checkpoint_conf.c @@ -133,7 +133,6 @@ virDomainCheckpointDefParse(xmlXPathContextPtr ctxt, int n; char *tmp; VIR_AUTOFREE(xmlNodePtr *) nodes = NULL; - VIR_AUTOFREE(char *)creation = NULL; VIR_AUTOUNREF(virDomainCheckpointDefPtr) def = NULL; if (!(def = virDomainCheckpointDefNew()))