mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 01:53:29 +02:00
fs/ntfs3: One more reason to mark inode bad
In addition to returning an error, mark the node as bad. Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
parent
69505fe98f
commit
a0dde5d7a5
|
|
@ -1601,8 +1601,10 @@ int ni_delete_all(struct ntfs_inode *ni)
|
|||
asize = le32_to_cpu(attr->size);
|
||||
roff = le16_to_cpu(attr->nres.run_off);
|
||||
|
||||
if (roff > asize)
|
||||
if (roff > asize) {
|
||||
_ntfs_bad_inode(&ni->vfs_inode);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
/* run==1 means unpack and deallocate. */
|
||||
run_unpack_ex(RUN_DEALLOCATE, sbi, ni->mi.rno, svcn, evcn, svcn,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user