diff options
author | Denys Vlasenko | 2013-06-29 17:00:22 +0200 |
---|---|---|
committer | Denys Vlasenko | 2013-06-29 17:00:22 +0200 |
commit | e73f3c1d3d83699b723251f7e6a981021ce75475 (patch) | |
tree | e0272460fb0dbbe33412a09534c088634fd3ed24 /util-linux/volume_id/ntfs.c | |
parent | 64406a92a054f884747553011d4529103e2900e4 (diff) | |
download | busybox-1_21_1.zip busybox-1_21_1.tar.gz |
Apply post-1.21.0 patches, bump version to 1.21.11_21_1
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/volume_id/ntfs.c')
-rw-r--r-- | util-linux/volume_id/ntfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/volume_id/ntfs.c b/util-linux/volume_id/ntfs.c index 7b2612f..0444e54 100644 --- a/util-linux/volume_id/ntfs.c +++ b/util-linux/volume_id/ntfs.c @@ -150,7 +150,7 @@ int FAST_FUNC volume_id_probe_ntfs(struct volume_id *id /*,uint64_t off*/) attr = (struct file_attribute*) &buf[attr_off]; attr_type = le32_to_cpu(attr->type); - attr_len = le16_to_cpu(attr->len); + attr_len = le32_to_cpu(attr->len); val_off = le16_to_cpu(attr->value_offset); val_len = le32_to_cpu(attr->value_len); attr_off += attr_len; |