tests: virnetdevbandwidthtest: use g_auto

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Ján Tomko 2021-08-20 14:58:13 +02:00
parent 780b5ab62a
commit 3e74bb8321

View File

@ -69,7 +69,7 @@ testVirNetDevBandwidthSet(const void *data)
const char *iface = info->iface;
g_autoptr(virNetDevBandwidth) band = NULL;
g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER;
char *actual_cmd = NULL;
g_autofree char *actual_cmd = NULL;
g_autoptr(virCommandDryRunToken) dryRunToken = virCommandDryRunTokenNew();
PARSE(info->band, band);
@ -96,7 +96,6 @@ testVirNetDevBandwidthSet(const void *data)
ret = 0;
cleanup:
VIR_FREE(actual_cmd);
return ret;
}