From: Ján Tomko Date: Fri, 20 Aug 2021 12:58:13 +0000 (+0200) Subject: tests: virnetdevbandwidthtest: use g_auto X-Git-Tag: v7.7.0-rc1~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e74bb83215178f247cb7f44310a648313df794e;p=thirdparty%2Flibvirt.git tests: virnetdevbandwidthtest: use g_auto Signed-off-by: Ján Tomko Reviewed-by: Michal Privoznik --- diff --git a/tests/virnetdevbandwidthtest.c b/tests/virnetdevbandwidthtest.c index 83e7b2089f..197d936479 100644 --- a/tests/virnetdevbandwidthtest.c +++ b/tests/virnetdevbandwidthtest.c @@ -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; }