From 65bc0ff1413fdb2c7dbdeb3ca174f073dd4898ec Mon Sep 17 00:00:00 2001 From: "nsf.cd" Date: Tue, 14 Nov 2023 18:20:22 +0800 Subject: Fix memory leak when fill flags has PCI_FILL_PARENT. --- lib/sysfs.c | 6 ++++++ 1 file changed, 6 insertions(+) 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); } } -- cgit 1.2.3-korg