Dan Carpenter
2011-May-29 19:57 UTC
[Ocfs2-devel] [patch] ocfs2: null deref on allocation error
The original code had a null derefence in the error handling. Signed-off-by: Dan Carpenter <error27 at gmail.com> diff --git a/fs/ocfs2/ioctl.c b/fs/ocfs2/ioctl.c index bc91072..d9a6ce7 100644 --- a/fs/ocfs2/ioctl.c +++ b/fs/ocfs2/ioctl.c @@ -381,7 +381,7 @@ int ocfs2_info_handle_freeinode(struct inode *inode, if (!oifi) { status = -ENOMEM; mlog_errno(status); - goto bail; + goto out_err; } if (o2info_from_user(*oifi, req)) @@ -431,7 +431,7 @@ bail: o2info_set_request_error(&oifi->ifi_req, req); kfree(oifi); - +out_err: return status; } @@ -666,7 +666,7 @@ int ocfs2_info_handle_freefrag(struct inode *inode, if (!oiff) { status = -ENOMEM; mlog_errno(status); - goto bail; + goto out_err; } if (o2info_from_user(*oiff, req)) @@ -716,7 +716,7 @@ bail: o2info_set_request_error(&oiff->iff_req, req); kfree(oiff); - +out_err: return status; }
Joel Becker
2011-Jun-01 02:24 UTC
[Ocfs2-devel] [patch] ocfs2: null deref on allocation error
On Sun, May 29, 2011 at 10:57:16PM +0300, Dan Carpenter wrote:> The original code had a null derefence in the error handling. > > Signed-off-by: Dan Carpenter <error27 at gmail.com>This patch is now in the 'fixes' branch of ocfs2.git. Joel -- "The trouble with being punctual is that nobody's there to appreciate it." - Franklin P. Jones http://www.jlbec.org/ jlbec at evilplan.org