* [PATCH] v9fs-replace-strlen-with-pathmax-getname.patch
@ 2005-09-21 1:24 Latchesar Ionkov
0 siblings, 0 replies; only message in thread
From: Latchesar Ionkov @ 2005-09-21 1:24 UTC (permalink / raw)
To: linux-kernel; +Cc: v9fs-developer
Signed-off-by: Latchesar Ionkov <lucho@ionkov.net>
strlen errorneously called with newly allocated by __getname buffer
---
commit 0b381cf7efcd34bb6b316baf7ed5d18d402e62f0
tree c8ec5ac42ec5d1c28d2f97a1de553940f3746f2b
parent 34ad50ad5bf63c55687350d9f4e3c4dcc44304a7
author Latchesar Ionkov <lucho@ionkov.net> Tue, 20 Sep 2005 19:28:30 -0400
committer Latchesar Ionkov <lucho@ionkov.net> Tue, 20 Sep 2005 19:28:30 -0400
fs/9p/vfs_inode.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c
--- a/fs/9p/vfs_inode.c
+++ b/fs/9p/vfs_inode.c
@@ -1063,8 +1063,8 @@ static int v9fs_vfs_readlink(struct dent
int ret;
char *link = __getname();
- if (strlen(link) < buflen)
- buflen = strlen(link);
+ if (buflen > PATH_MAX)
+ buflen = PATH_MAX;
dprintk(DEBUG_VFS, " dentry: %s (%p)\n", dentry->d_iname, dentry);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-09-21 1:24 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-21 1:24 [PATCH] v9fs-replace-strlen-with-pathmax-getname.patch Latchesar Ionkov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox