diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2013-01-15 12:24:46 +0100 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.cz> | 2013-01-17 13:05:52 +0100 |
commit | e2560362cc2b39a0567cab510121a7e93dfbe797 (patch) | |
tree | ef36172bbf41c28c64f645e43a978e4ccb8dd1be /fs | |
parent | 30783587b0f318b9e2e165f34cf5dfd9425a4904 (diff) | |
download | linux-stable-e2560362cc2b39a0567cab510121a7e93dfbe797.tar.gz linux-stable-e2560362cc2b39a0567cab510121a7e93dfbe797.tar.bz2 linux-stable-e2560362cc2b39a0567cab510121a7e93dfbe797.zip |
cuse: fix uninitialized variable warnings
Fix the following compiler warnings:
fs/fuse/cuse.c: In function 'cuse_process_init_reply':
fs/fuse/cuse.c:288:24: warning: 'val' may be used uninitialized in this function [-Wmaybe-uninitialized]
fs/fuse/cuse.c:272:14: note: 'val' was declared here
fs/fuse/cuse.c:284:10: warning: 'key' may be used uninitialized in this function [-Wmaybe-uninitialized]
fs/fuse/cuse.c:272:8: note: 'key' was declared here
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/fuse/cuse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fuse/cuse.c b/fs/fuse/cuse.c index 2a2797e2abc5..e397b675b029 100644 --- a/fs/fuse/cuse.c +++ b/fs/fuse/cuse.c @@ -266,7 +266,7 @@ static int cuse_parse_one(char **pp, char *end, char **keyp, char **valp) static int cuse_parse_devinfo(char *p, size_t len, struct cuse_devinfo *devinfo) { char *end = p + len; - char *key, *val; + char *uninitialized_var(key), *uninitialized_var(val); int rc; while (true) { |