ntfscluster does not close inode when dumping info from path
mike309game opened this issue · 0 comments
mike309game commented
When using ntfscluster to show info about a file path, the opened inode handle is not closed.
Simply changing
ntfs-3g/ntfsprogs/ntfscluster.c
Lines 538 to 539 in 75dcdc2
to
if (ino)
result = dump_file(vol, ino);
ntfs_inode_close(ino);
will properly close it.