]> git.baikalelectronics.ru Git - kernel.git/commit
9p: strlen() doesn't count the terminator
authorDan Carpenter <error27@gmail.com>
Sat, 10 Jul 2010 09:51:54 +0000 (11:51 +0200)
committerEric Van Hensbergen <ericvh@gmail.com>
Mon, 2 Aug 2010 15:37:17 +0000 (10:37 -0500)
commit90431de71bd105858eaee385a52e74760dbe00ec
tree8d8793de1843a1831f5ee38efb273a30f06c2a65
parent7866bd5ffb1ad4c56bef14abdc300f4ee452ab23
9p: strlen() doesn't count the terminator

This is an off by one bug because strlen() doesn't count the NULL
terminator.  We strcpy() addr into a fixed length array of size
UNIX_PATH_MAX later on.

The addr variable is the name of the device being mounted.

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
net/9p/trans_fd.c