diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2007-05-31 00:40:49 -0700 |
---|---|---|
committer | Chris Wright <chrisw@sous-sol.org> | 2007-06-11 11:37:11 -0700 |
commit | d6ecd0775fe06a3722eb83c7e731f2f4abd1585d (patch) | |
tree | b599722eb58cde0805afb8e84e3c3ae5aa814cc3 | |
parent | 58a25fc96840baa5a6e0a15a0089919e2d96cfc9 (diff) | |
download | lwn-d6ecd0775fe06a3722eb83c7e731f2f4abd1585d.tar.gz lwn-d6ecd0775fe06a3722eb83c7e731f2f4abd1585d.zip |
[PATCH] 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" <hidave.darkstar@gmail.com>
Cc: "Christoph Lameter" <clameter@sgi.com>
Acked-by: Anton Altaparmakov <aia21@cantab.net>
Cc: <stable@kernel.org>
Cc: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
-rw-r--r-- | fs/ntfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs/inode.c b/fs/ntfs/inode.c index f8bf8da67ee8..461460d817d9 100644 --- a/fs/ntfs/inode.c +++ b/fs/ntfs/inode.c @@ -141,7 +141,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; } |