On 5/11/21 11:01 AM, Tim Wiederhake wrote:
}
VIR_FREE(nodes);
if ((n = virXPathNodeSet("./cpu/numa[1]/interconnects[1]/latency|"
"./cpu/numa[1]/interconnects[1]/bandwidth",
ctxt, &nodes)) <
Again, the VIR_FREE(nodes) points out that you're re-using a g_autofree
pointer, and should instead use two separate pointers.