mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-24 06:35:24 +00:00
cpu_x86: Introduce virCPUx86SignaturesFree
The function will be used for freeing virCPUx86Signatures structure introduced later in this series. Signed-off-by: Jiri Denemark <jdenemar@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
7e0d351fa6
commit
372b2cf1ca
@ -1090,6 +1090,13 @@ x86FeatureParse(xmlXPathContextPtr ctxt,
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
virCPUx86SignaturesFree(uint32_t *signatures)
|
||||
{
|
||||
g_free(signatures);
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
virCPUx86SignaturesCopy(virCPUx86ModelPtr dst,
|
||||
virCPUx86ModelPtr src)
|
||||
@ -1149,7 +1156,7 @@ x86ModelFree(virCPUx86ModelPtr model)
|
||||
return;
|
||||
|
||||
g_free(model->name);
|
||||
g_free(model->signatures);
|
||||
virCPUx86SignaturesFree(model->signatures);
|
||||
virCPUx86DataClear(&model->data);
|
||||
g_free(model);
|
||||
}
|
||||
@ -1414,7 +1421,7 @@ x86ModelParseSignatures(virCPUx86ModelPtr model,
|
||||
return n;
|
||||
|
||||
/* Remove inherited signatures. */
|
||||
VIR_FREE(model->signatures);
|
||||
virCPUx86SignaturesFree(model->signatures);
|
||||
|
||||
model->nsignatures = n;
|
||||
if (VIR_ALLOC_N(model->signatures, n) < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user