From 0bfcb6ff6c9b07acb5ea16a22b5e24eb36b3609b Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Tue, 21 May 2013 23:47:18 -0500 Subject: [PATCH] read_dentry_tree(): Do not leak duplicate dentries --- src/dentry.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dentry.c b/src/dentry.c index 50317193..86a82eb6 100644 --- a/src/dentry.c +++ b/src/dentry.c @@ -1970,6 +1970,7 @@ read_dentry_tree(const u8 metadata_resource[], u64 metadata_resource_len, "at that path with the exact same name)", child_type, dentry_full_path(duplicate), duplicate_type); + free_dentry(child); } else { inode_add_dentry(child, child->d_inode); /* If there are children of this child, call this -- 2.43.0