[libvirt] [PATCH] virpci: Drop unused @ret in virPCIDeviceListDel

Michal Privoznik mprivozn at redhat.com
Fri Jul 27 16:10:45 UTC 2018


So after 00dc991ca16730 the function is one line long and the
line is declaring a variable which is never used in fact. Replace
it with actual free() call instead of autofree.

Signed-off-by: Michal Privoznik <mprivozn at redhat.com>
---

Pushed under build breaker rule as this is causing clang to complain.
Huh, who uses that? :-P

 src/util/virpci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/util/virpci.c b/src/util/virpci.c
index 634df8d35f..6cf2acf2d1 100644
--- a/src/util/virpci.c
+++ b/src/util/virpci.c
@@ -2003,7 +2003,7 @@ void
 virPCIDeviceListDel(virPCIDeviceListPtr list,
                     virPCIDevicePtr dev)
 {
-    VIR_AUTOPTR(virPCIDevice) ret = virPCIDeviceListSteal(list, dev);
+    virPCIDeviceFree(virPCIDeviceListSteal(list, dev));
 }
 
 int
-- 
2.16.4




More information about the libvir-list mailing list