From: Michal Privoznik Date: Tue, 8 Feb 2022 11:11:26 +0000 (+0100) Subject: cpu_conf: unbreak XPath in virCPUDefParseXML() X-Git-Tag: v8.1.0-rc1~156 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a58ff736441039ff1c776089b912a60bee9c748b;p=thirdparty%2Flibvirt.git cpu_conf: unbreak XPath in virCPUDefParseXML() In one of my previous commits, I've changed an XPath in virCPUDefParseXML() from "boolean(./counter...)" to "./counter...)". Notice the dangling closing bracket? Well, I didn't back then. Fixes: 0fe2d8dd335054fae38b46bbbac58a4662e1a1d0 Signed-off-by: Michal Privoznik Reviewed-by: Ján Tomko --- diff --git a/src/conf/cpu_conf.c b/src/conf/cpu_conf.c index da83e99371..819efcea8c 100644 --- a/src/conf/cpu_conf.c +++ b/src/conf/cpu_conf.c @@ -441,7 +441,7 @@ virCPUDefParseXML(xmlXPathContextPtr ctxt, return -1; } - if ((counter_node = virXPathNode("./counter[@name='tsc'])", ctxt))) { + if ((counter_node = virXPathNode("./counter[@name='tsc']", ctxt))) { tsc = g_new0(virHostCPUTscInfo, 1); if (virXMLPropULongLong(counter_node, "frequency", 10,