mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-01 17:35:17 +00:00
testVirFindSCSIHostByPCI: Remove unused 'path_addr'
The path is formatted but then just freed without any use since introduction of the test function. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com
This commit is contained in:
parent
84a4208ed2
commit
0eefd2a00a
@ -202,12 +202,9 @@ testVirFindSCSIHostByPCI(const void *data G_GNUC_UNUSED)
|
|||||||
unsigned int unique_id2 = 2;
|
unsigned int unique_id2 = 2;
|
||||||
const char *pci_addr1 = "0000:00:1f.1";
|
const char *pci_addr1 = "0000:00:1f.1";
|
||||||
const char *pci_addr2 = "0000:00:1f.2";
|
const char *pci_addr2 = "0000:00:1f.2";
|
||||||
char *path_addr = NULL;
|
|
||||||
char *ret_host = NULL;
|
char *ret_host = NULL;
|
||||||
int ret = -1;
|
int ret = -1;
|
||||||
|
|
||||||
path_addr = g_strdup_printf("%s/%s", abs_srcdir, "sysfs/class/scsi_host");
|
|
||||||
|
|
||||||
if (!(ret_host = virSCSIHostFindByPCI(TEST_SCSIHOST_CLASS_PATH,
|
if (!(ret_host = virSCSIHostFindByPCI(TEST_SCSIHOST_CLASS_PATH,
|
||||||
pci_addr1, unique_id1)) ||
|
pci_addr1, unique_id1)) ||
|
||||||
STRNEQ(ret_host, "host0"))
|
STRNEQ(ret_host, "host0"))
|
||||||
@ -236,7 +233,6 @@ testVirFindSCSIHostByPCI(const void *data G_GNUC_UNUSED)
|
|||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
VIR_FREE(ret_host);
|
VIR_FREE(ret_host);
|
||||||
VIR_FREE(path_addr);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user