From: nsf.cd Date: Tue, 14 Nov 2023 10:20:22 +0000 (+0800) Subject: Fix memory leak when fill flags has PCI_FILL_PARENT. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2Ftmp;p=thirdparty%2Fpciutils.git Fix memory leak when fill flags has PCI_FILL_PARENT. --- diff --git a/lib/sysfs.c b/lib/sysfs.c index 1bb4ae9..c90a476 100644 --- a/lib/sysfs.c +++ b/lib/sysfs.c @@ -409,12 +409,18 @@ sysfs_fill_info(struct pci_dev *d, unsigned int flags) path_canon = realpath(path_rel, NULL); if (!path_canon || strcmp(path_canon, path_abs) != 0) parent = NULL; + + if (path_canon) + free(path_canon); } if (parent) d->parent = parent; else clear_fill(d, PCI_FILL_PARENT); + + if (path_abs) + free(path_abs); } }