From: Latchesar Ionkov Date: Fri, 23 Sep 2005 04:43:52 +0000 (-0700) Subject: [PATCH] v9fs: replace strlen on newly allocated by __getname buffers to PATH_MAX X-Git-Tag: v2.6.14-rc3~51^2~62 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1f9d8d23fef301ba0c0b4983e0aa947168e1c37;p=pandora-kernel.git [PATCH] v9fs: replace strlen on newly allocated by __getname buffers to PATH_MAX v9fs_vfs_readlink allocates space for the link using __getname and errorneously uses strlen on the newly allocated buffer to check if the buffer passed by the user is bigger than the one returned by __getname. The patch replaces the strlen usage to PATH_MAX, which is the actual size of the buffers returned by __getname. Signed-off-by: Latchesar Ionkov Cc: Eric Van Hensbergen Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed