From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Liu Date: Thu, 01 Aug 2013 22:11:06 +0800 Subject: [Ocfs2-devel] [patch v2] ocfs2: fix recent memory corruption bug In-Reply-To: <20130801140259.GA18952@elgon.mountain> References: <20130801140259.GA18952@elgon.mountain> Message-ID: <51FA6C7A.9050407@oracle.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ocfs2-devel@oss.oracle.com On 08/01/2013 10:02 PM, Dan Carpenter wrote: > The pointer math in 6fdf3af1d2 "ocfs2: fix null pointer dereference in > ocfs2_dir_foreach_blk_id()" isn't correct so it will zero out the wrong > memory. In fact, the memset isn't needed because the initializer will > set all these values to zero. > > Signed-off-by: Dan Carpenter > --- > v2: remove the memset > > diff --git a/fs/ocfs2/dir.c b/fs/ocfs2/dir.c > index c91d986..b1748cd 100644 > --- a/fs/ocfs2/dir.c > +++ b/fs/ocfs2/dir.c > @@ -2157,9 +2157,6 @@ int ocfs2_empty_dir(struct inode *inode) > .ctx.pos = 0, Umm, so above line could be removed as well. Thanks, -Jeff > }; > > - memset(&priv + sizeof(struct dir_context), 0, > - sizeof(priv) - sizeof(struct dir_context)); > - > if (ocfs2_dir_indexed(inode)) { > ret = ocfs2_empty_dir_dx(inode, &priv); > if (ret)