aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morton <[email protected]>2007-05-31 00:40:49 -0700
committerLinus Torvalds <[email protected]>2007-05-31 07:58:13 -0700
commit1fc799e1b4efdbc405d87d9f154d64d9bc299e5c (patch)
tree39b41ffd8647b3fa0a8262c4e5cb69602d309010
parentebdf7d399e67499dbd2a6b5154805fb049846cbb (diff)
ntfs_init_locked_inode(): fix array indexing
Local variable `i' is a byte-counter. Don't use it as an index into an array of le32's. Reported-by: "young dave" <[email protected]> Cc: "Christoph Lameter" <[email protected]> Acked-by: Anton Altaparmakov <[email protected]> Cc: <[email protected]> Cc: Adrian Bunk <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--fs/ntfs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs/inode.c b/fs/ntfs/inode.c
index 074791ce4ab2..b532a730cec2 100644
--- a/fs/ntfs/inode.c
+++ b/fs/ntfs/inode.c
@@ -140,7 +140,7 @@ static int ntfs_init_locked_inode(struct inode *vi, ntfs_attr *na)
if (!ni->name)
return -ENOMEM;
memcpy(ni->name, na->name, i);
- ni->name[i] = 0;
+ ni->name[na->name_len] = 0;
}
return 0;
}