aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/sysfs.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/sysfs.c b/lib/sysfs.c
index 1bb4ae9..0a4604b 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);
}
}