mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 13:14:02 +02:00
fs/ntfs3: Fix memory leak in indx_find_sort()
When popping a level from the index lookup stack, indx_find_sort() frees the struct indx_node but not the index buffer it owns. Every call that descends and then pops a level leaks that allocation. Free n->index before freeing the node itself. Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
parent
6f7b9dbdc1
commit
194491be54
|
|
@ -1325,6 +1325,7 @@ int indx_find_sort(struct ntfs_index *indx, struct ntfs_inode *ni,
|
|||
/* Pop one level. */
|
||||
if (n) {
|
||||
fnd_pop(fnd);
|
||||
kfree(n->index);
|
||||
kfree(n);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user