From: Geert Uytterhoeven Date: Thu, 12 Nov 2015 11:46:23 +0000 (+0000) Subject: FS-Cache: Add missing initialization of ret in cachefiles_write_page() X-Git-Tag: v3.2.75~65 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d7b6dfc16b08cce987e8ccc9720dca92a985622;p=pandora-kernel.git FS-Cache: Add missing initialization of ret in cachefiles_write_page() commit cf89752645e47d86ba8a4157f4b121fcb33434c5 upstream. fs/cachefiles/rdwr.c: In function ‘cachefiles_write_page’: fs/cachefiles/rdwr.c:882: warning: ‘ret’ may be used uninitialized in this function If the jump to label "error" is taken, "ret" will indeed be uninitialized, and random stack data may be printed by the debug code. Fixes: 102f4d900c9c8f5e ("FS-Cache: Handle a write to the page immediately beyond the EOF marker") Signed-off-by: Geert Uytterhoeven Signed-off-by: David Howells Signed-off-by: Al Viro Signed-off-by: Ben Hutchings --- diff --git a/fs/cachefiles/rdwr.c b/fs/cachefiles/rdwr.c index 00d942540e6c..8c4292bfb453 100644 --- a/fs/cachefiles/rdwr.c +++ b/fs/cachefiles/rdwr.c @@ -894,7 +894,7 @@ int cachefiles_write_page(struct fscache_storage *op, struct page *page) loff_t pos, eof; size_t len; void *data; - int ret; + int ret = -ENOBUFS; ASSERT(op != NULL); ASSERT(page != NULL);