9p: strlen() doesn't count the terminator
commitbc92e1f6c272fecd12c0aa64232a582039e58718
authorDan Carpenter <error27@gmail.com>
Fri, 9 Jul 2010 23:51:54 +0000 (9 23:51 +0000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 10 Aug 2010 17:20:39 +0000 (10 10:20 -0700)
tree55b733ad267762d73c6248d8a4b3c64e879a3419
parent0531e961fc58bd6c3956c300fe71dee7e771953c
9p: strlen() doesn't count the terminator

commit 5c4bfa17f3ec46becec4b23d12323f7605ebd696 upstream.

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: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/9p/trans_fd.c