X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=fs%2Fntfs%2Fattrib.c;h=50d3b0c258e37cd0413568aef6d4216086a6bb02;hb=3c375c6f3a809d0d999d6dc933634f0b97ed7ae9;hp=92dabdcf2b80b2c0d8f1f5832e9eb0043be391d3;hpb=71a380d668189778416d37cde5521575a45c5a17;p=linux-2.6 diff --git a/fs/ntfs/attrib.c b/fs/ntfs/attrib.c index 92dabdcf2b..50d3b0c258 100644 --- a/fs/ntfs/attrib.c +++ b/fs/ntfs/attrib.c @@ -179,10 +179,7 @@ int ntfs_map_runlist_nolock(ntfs_inode *ni, VCN vcn, ntfs_attr_search_ctx *ctx) * ntfs_mapping_pairs_decompress() fails. */ end_vcn = sle64_to_cpu(a->data.non_resident.highest_vcn) + 1; - if (!a->data.non_resident.lowest_vcn && end_vcn == 1) - end_vcn = sle64_to_cpu(a->data.non_resident.allocated_size) >> - ni->vol->cluster_size_bits; - if (unlikely(vcn >= end_vcn)) { + if (unlikely(vcn && vcn >= end_vcn)) { err = -ENOENT; goto err_out; }