dect
/
linux-2.6
Archived
13
0
Fork 0

nfsd warning fix

fs/nfsd/nfsctl.c: In function 'write_filehandle':
fs/nfsd/nfsctl.c:301: warning: 'maxsize' may be used uninitialized in this function

Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>
Acked-by:  Neil Brown <neilb@suse.de>
This commit is contained in:
Andrew Morton 2007-08-09 00:53:50 -07:00 committed by J. Bruce Fields
parent dd4877bfb6
commit 246d95ba05
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
* qword quoting is used, so filehandle will be \x....
*/
char *dname, *path;
int maxsize;
int uninitialized_var(maxsize);
char *mesg = buf;
int len;
struct auth_domain *dom;