From: Anand V. Avati Date: Thu, 22 Oct 2009 13:24:52 +0000 (-0700) Subject: fuse: prevent fuse_put_request on invalid pointer X-Git-Tag: v2.6.32-rc7~67^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f60311d5f7670d9539b424e4ed8b5c0872fc9e83;p=platform%2Fkernel%2Flinux-3.10.git fuse: prevent fuse_put_request on invalid pointer fuse_direct_io() has a loop where requests are allocated in each iteration. if allocation fails, the loop is broken out and follows into an unconditional fuse_put_request() on that invalid pointer. Signed-off-by: Anand V. Avati Signed-off-by: Miklos Szeredi Cc: stable@kernel.org --- diff --git a/fs/fuse/file.c b/fs/fuse/file.c index a3492f7..5887a63 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c @@ -1063,7 +1063,8 @@ ssize_t fuse_direct_io(struct file *file, const char __user *buf, break; } } - fuse_put_request(fc, req); + if (!IS_ERR(req)) + fuse_put_request(fc, req); if (res > 0) *ppos = pos;