From bcf3e3a2842a4553e08a6aa894e883e36820f32d Mon Sep 17 00:00:00 2001 From: John Ferlan Date: Sun, 28 Jul 2019 09:20:24 -0400 Subject: [PATCH] conf: Remove unnecessary declaration in virDomainCheckpointDefParse The @creation variable wasn't used - caused a Travis build failure. Signed-off-by: John Ferlan --- src/conf/checkpoint_conf.c | 1 - 1 file changed, 1 deletion(-) 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())) -- 2.47.2