Open mike309game opened 1 year ago
When using ntfscluster to show info about a file path, the opened inode handle is not closed.
Simply changing https://github.com/tuxera/ntfs-3g/blob/75dcdc2cf37478fad6c0e3427403d198b554951d/ntfsprogs/ntfscluster.c#L538-L539 to
if (ino) result = dump_file(vol, ino); ntfs_inode_close(ino);
will properly close it.
When using ntfscluster to show info about a file path, the opened inode handle is not closed.
Simply changing https://github.com/tuxera/ntfs-3g/blob/75dcdc2cf37478fad6c0e3427403d198b554951d/ntfsprogs/ntfscluster.c#L538-L539 to
will properly close it.